You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful with a next generation of the mail interface, where both "Ccc" and "Bcc" are supported, as well as multiple addresses for each (using arrays of MailAddress) and attachments.
Attachment would be a list of something like this.
class MailAttachment
{
string MimeType;
string Name;
byte[] Body;
}
In my case I want to send an approval message for a booking to both the tenant as well as a copy to the administrator - with a contract attached.
The text was updated successfully, but these errors were encountered:
It would be useful with a next generation of the mail interface, where both "Ccc" and "Bcc" are supported, as well as multiple addresses for each (using arrays of
MailAddress
) and attachments.Attachment would be a list of something like this.
In my case I want to send an approval message for a booking to both the tenant as well as a copy to the administrator - with a contract attached.
The text was updated successfully, but these errors were encountered: