Skip to content

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.

Arguments

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);

Clone this wiki locally