We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement the EmailManager API to provide the ability to compose an e-mail and send it via the platform's email client.
This API will allow applications to easily compose an email without having to implement per platform.
EmailManager
Task ShowComposeNewEmailAsync(EmailMessage message)
EmailMessage
IList Attachments { get; }
IList Bcc { get; }
string Body { get; set; }
IList CC { get; }
string Subject { get; set; }
IList To { get; }
EmailAttachment
IStorageFile Data { get; set; }
string FileName { get; set; }
string MimeType { get; set; }
EmailRecipient
string Address { get; set; }
string Name { get; set; }
The text was updated successfully, but these errors were encountered:
In the UWP API, EmailAttachment Data property is IRandomAccessStreamReference.
Data
IRandomAccessStreamReference
Proposing that this is IStorageFile instead although this is a change between the Windows API and the XPlat API.
Sorry, something went wrong.
Helpful links to relevant platform APIs:
No branches or pull requests
Description
Implement the EmailManager API to provide the ability to compose an e-mail and send it via the platform's email client.
How will this benefit you and others?
This API will allow applications to easily compose an email without having to implement per platform.
What is the expected API coverage?
EmailManager
Methods
Task ShowComposeNewEmailAsync(EmailMessage message)
EmailMessage
Properties
IList Attachments { get; }
IList Bcc { get; }
string Body { get; set; }
IList CC { get; }
string Subject { get; set; }
IList To { get; }
EmailAttachment
Properties
IStorageFile Data { get; set; }
string FileName { get; set; }
string MimeType { get; set; }
EmailRecipient
Properties
string Address { get; set; }
string Name { get; set; }
The text was updated successfully, but these errors were encountered: