public Task<string> SendMessageHtmlAsync(
string subject,
string body,
string[] addresses,
params Attachment[] attachments
)
Public Function SendMessageHtmlAsync (
subject As String,
body As String,
addresses As String(),
ParamArray attachments As Attachment()
) As Task(Of String)
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim addresses As String()
Dim attachments As Attachment()
Dim returnValue As Task(Of String)
returnValue = instance.SendMessageHtmlAsync(subject,
body, addresses, attachments)
public:
Task<String^>^ SendMessageHtmlAsync(
String^ subject,
String^ body,
array<String^>^ addresses,
... array<Attachment^>^ attachments
)
member SendMessageHtmlAsync :
subject : string *
body : string *
addresses : string[] *
attachments : 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.String[],System.Net.Mail.Attachment[])"]
No code example is currently available or this language may not be supported.
Await SendMessageHtmlAsync("Email Subject", "Message Body", {"address1@domain.com", "address2@domain.com"}, New Attachment("C:\File.txt"))
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.