Email.ComposeAsync Method

Definition

Overloads

ComposeAsync()

Opens the default email client to allow the user to send the message.

ComposeAsync(EmailMessage)

Opens the default email client to allow the user to send the message.

ComposeAsync(String, String, String[])

Opens the default email client to allow the user to send the message with the provided subject, body and recipients.

ComposeAsync()

Opens the default email client to allow the user to send the message.

public static System.Threading.Tasks.Task ComposeAsync ();

Returns

Applies to

ComposeAsync(EmailMessage)

Opens the default email client to allow the user to send the message.

public static System.Threading.Tasks.Task ComposeAsync (Xamarin.Essentials.EmailMessage message);

Parameters

message
EmailMessage

The email message.

Returns

Applies to

ComposeAsync(String, String, String[])

Opens the default email client to allow the user to send the message with the provided subject, body and recipients.

public static System.Threading.Tasks.Task ComposeAsync (string subject, string body, params string[] to);

Parameters

subject
String

The email subject.

body
String

The email body.

to
String[]

The email recipients.

Returns

Applies to