public Task<string> SendMessageTextAsync(
string subject,
string body,
string address,
ICollection<Attachment> attachments
)
Public Function SendMessageTextAsync (
subject As String,
body As String,
address As String,
attachments As ICollection(Of Attachment)
) As Task(Of String)
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim address As String
Dim attachments As ICollection(Of Attachment)
Dim returnValue As Task(Of String)
returnValue = instance.SendMessageTextAsync(subject,
body, address, attachments)
public:
Task<String^>^ SendMessageTextAsync(
String^ subject,
String^ body,
String^ address,
ICollection<Attachment^>^ attachments
)
member SendMessageTextAsync :
subject : string *
body : string *
address : string *
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.SendMessageTextAsync(System.String,System.String,System.String,System.Collections.Generic.ICollection{System.Net.Mail.Attachment})"]
No code example is currently available or this language may not be supported.
Dim attachments As New Collection(Of Attachment) From {New Attachment("C:\File1.txt"), New Attachment("C:\File2.txt")}
Await SendMessageTextAsync("Email Subject", "Message Body", "address@domain.com", 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.