mailMsg

The mailMsg method sends a message using the default MAPI mail application.

 

Syntax

mailMsg(System.Boolean bUI, System.String cTo, System.String cCc);

 

Parameters

bUI

If it prompts to the user.

cTo

semicolon-separated list of addressees.

cCc

[optional] semicolon-separated list of Cc addressees.

cBcc

[optional] semicolon-separated list of BCC addressees.

cSubject

[optional] Subject line text (max 64kB).

cMsg

[optional] Message text (max 64kb).

 

Return Value

Returns None.

 

Remarks

Member of app.

 

Example

 
// Sending automatic
app.mailMsg(false, "sales@amyuni.com; support@amyuni.com", "info@amyuni.com", "", "The subject", "This is the message to send");
 
// Prompt for user interaction
app.mailMsg(true);