-
Notifications
You must be signed in to change notification settings - Fork 24
MobileCRM.Platform.email
rescocrm edited this page May 15, 2023
·
9 revisions
[v8.1] Opens the platform-specific e-mail message form with pre-filled data.
| Argument | Type | Description |
|---|---|---|
| address | String | Recipient's email address. |
| subject | String | An e-mail subject. |
| body | String | A string with email body. |
| errorCallback | function(errorMsg) | The errorCallback which is called asynchronously in case of error. |
| scope | Object | The scope for errorCallback. |
This example demonstrates how to call native email client and send message to specific email address.
MobileCRM.Platform.email("someone@example.com", /// email address
"Test Subject", /// email subject
"Hi, This is Resco email.", /// email body
MobileCRM.bridge.alert);