public Task<string> SendMessageHtmlAsync(
string subject,
string body,
MailAddressCollection addresses,
ICollection<Attachment> attachments
)
Public Function SendMessageHtmlAsync (
subject As String,
body As String,
addresses As MailAddressCollection,
attachments As ICollection(Of Attachment)
) As Task(Of String)
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim addresses As MailAddressCollection
Dim attachments As ICollection(Of Attachment)
Dim returnValue As Task(Of String)
returnValue = instance.SendMessageHtmlAsync(subject,
body, addresses, attachments)
public:
Task<String^>^ SendMessageHtmlAsync(
String^ subject,
String^ body,
MailAddressCollection^ addresses,
ICollection<Attachment^>^ attachments
)
member SendMessageHtmlAsync :
subject : string *
body : string *
addresses : MailAddressCollection *
attachments : ICollection<Attachment> -> Task<string>
No code example is currently available or this language may not be supported.
[Missing <returns> documentation for "M:DevCase.ThirdParty.Google.Gmail.GmailClient.SendMessageHtmlAsync(System.String,System.String,System.Net.Mail.MailAddressCollection,System.Collections.Generic.ICollection{System.Net.Mail.Attachment})"]
No code example is currently available or this language may not be supported.
Dim addressCollection As New MailAddressCollection
addressCollection.Add(New MailAddress("address1@domain.com"))
addressCollection.Add(New MailAddress("address2@domain.com"))
Dim attachments As New Collection(Of Attachment) From {New Attachment("C:\File1.txt"), New Attachment("C:\File2.txt")}
Await SendMessageHtmlAsync("Email Subject", "Message Body", addressCollection, attachments)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.