Method | Description | |
---|---|---|
Show ( string subject, string body ) : void |
Shows the e-mail compose screen with the specified subject and message body.
|
|
Show ( string to, string subject, string body ) : void |
Shows the e-mail compose screen with the specified recipients, subject and message body.
|
|
Show ( string to, string cc, string bcc, string subject, string body ) : void |
Shows the e-mail compose screen with the specified recipients, CC recipients, BCC recipients, subject and message body.
|
public Show ( string subject, string body ) : void | ||
subject | string | The e-mail subject. |
body | string | The e-mail message body. |
return | void |
public Show ( string to, string subject, string body ) : void | ||
to | string | The e-mail recipients. |
subject | string | The e-mail subject. |
body | string | The e-mail message body. |
return | void |
public Show ( string to, string cc, string bcc, string subject, string body ) : void | ||
to | string | The e-mail recipients. |
cc | string | The e-mail CC recipients. |
bcc | string | The e-mail BCC recipients. |
subject | string | The e-mail subject. |
body | string | The e-mail message body. |
return | void |