CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Oct 2015 |
Maintained by Felix Schulze.
FSOpenInGmail is a tool for sending mails with Gmail iOS App.
Using CocoaPods:
pod 'FSOpenInGmail', '~> 1.0'
For iOS 9 you have to add the following to your Info.plist:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>googlegmail</string>
</array>Check if Gmail app is installed:
if ([FSOpenInGmail canSendGmail]) {
//Gmail app is installed
}Open Gmail app composer:
[FSOpenInGmail sendEmailTo:@"[email protected]" subject:@"Some subject" body:@"Some body"];iOS 6.0+ is currently supported.
FSOpenInGmail is available under the MIT license. See the LICENSE file for more info.