MicroStrategy ONE

Send an Email in iOS

The following parameters and values are used to send an email using the mobile URL API. Email is an external application that is installed on the mobile device.

Parameter Description of Value

mailto

To: recipient in the email 

cc

Cc: recipient in the email 

bcc

Bcc: recipient in the email

subject

Subject: of the email

body

ext in the body of the email

The sample links below show how to send an email from inside your custom mobile application.

Sample link to send an email using static values:

Copy
<a href="mailto:jsmith@BigCompany.com?cc:msmith@BigCompany.com&subject:Project%20Update&body=Please%20forward%20my%20updated%20project%20figures">Contact John Smith</a>

Sample link to send an email using dynamic values (macros):

Copy
<a href="mailto:{CEOEmail}?cc:{VPEmail}&subject:Project%20Update&body=Please%20forward%20my%20updated%20project%20figures">Contact John Smith</a>