C# Class Cimbalino.Phone.Toolkit.Services.EmailComposeService

Represents an implementation of the IEmailComposeService.
Inheritance: IEmailComposeService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

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.

Method Details

Show() public method

Shows the e-mail compose screen with the specified 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

Show() public method

Shows the e-mail compose screen with the specified recipients, subject and message body.
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

Show() public method

Shows the e-mail compose screen with the specified recipients, CC recipients, BCC recipients, subject and message body.
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