mobile.composeMail

Invokes the user's default mail application for a new mail to send.

Syntax

ui.Interface.frontCall("mobile", "composeMail",
   [to, subject, content, cc, bcc, attachments ...],
   [result])
  1. to - A list of recipients, separated by commas. While the list uses commas to separate the recipients in the list, the list itself is enclosed in a single set of quotes.
  2. subject - The subject of the email.
  3. content - The body of the email.
  4. cc - (optional) A list of recipients for the carbon-copy email field, separated by commas. While the list uses commas to separate the recipients in the list, the list itself is enclosed in a single set of quotes.
  5. bcc - (optional) A list of recipients for the blind carbon-copy email field, separated by commas. While the list uses commas to separate the recipients in the list, the list itself is enclosed in a single set of quotes.
  6. attachments ... - (optional) All remaining arguments are treated as paths to attachment files. Each attachment filename is enclosed in its own set of quotes. The comma is used to separate the attachments in the list.
  7. result - Holds a status message.

Usage

The "mobile.composeMail" front call is a synonym for standard.composeMail.