-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Erick Maeda
committed
Jun 21, 2020
1 parent
eda6a38
commit cb8e5f4
Showing
1 changed file
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,17 +28,27 @@ import { sendEmail } from 'react-native-email-action'; | |
const options = { | ||
to: "[email protected]", | ||
subject: "Very important!", | ||
body: "Verify your email fast!" | ||
body: "Verify your email fast!", | ||
}; | ||
sendMail(options); | ||
``` | ||
|
||
### Available email app | ||
#### iOS (If installed) | ||
## Available Options to sendMail | ||
``` | ||
| |description |type |required | | ||
|- |- |- |- | | ||
|to |Email to destination |string |Y | | ||
|subject |Email Subject |string |Y | | ||
|body |Email Content |string |Y | | ||
|cc |Email CC |array |N | | ||
|bcc |Email BCC |array |N | | ||
``` | ||
## Available email app | ||
### iOS (If installed) | ||
- Gmail | ||
- Outlook | ||
#### Android | ||
### Android | ||
- All the apps installed. | ||
|
||
## Roadmap | ||
|