public Task<string> SendMessageTextAsync(
string subject,
string body,
MailAddress address
)
Public Function SendMessageTextAsync (
subject As String,
body As String,
address As MailAddress
) As Task(Of String)
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim address As MailAddress
Dim returnValue As Task(Of String)
returnValue = instance.SendMessageTextAsync(subject,
body, address)
public:
Task<String^>^ SendMessageTextAsync(
String^ subject,
String^ body,
MailAddress^ address
)
member SendMessageTextAsync :
subject : string *
body : string *
address : MailAddress -> 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.Net.Mail.MailAddress)"]
No code example is currently available or this language may not be supported.
Await SendMessageTextAsync("Email Subject", "Message Body", New MailAddress("address@domain.com"))
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.