public string SendMessageHtml(
string subject,
string body,
MailAddressCollection addresses
)
Public Function SendMessageHtml (
subject As String,
body As String,
addresses As MailAddressCollection
) As String
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim addresses As MailAddressCollection
Dim returnValue As String
returnValue = instance.SendMessageHtml(subject,
body, addresses)
public:
String^ SendMessageHtml(
String^ subject,
String^ body,
MailAddressCollection^ addresses
)
member SendMessageHtml :
subject : string *
body : string *
addresses : MailAddressCollection -> string
No code example is currently available or this language may not be supported.
[Missing <returns> documentation for "M:DevCase.ThirdParty.Google.Gmail.GmailClient.SendMessageHtml(System.String,System.String,System.Net.Mail.MailAddressCollection)"]
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"))
SendMessageHtml("Email Subject", "Message Body", addressCollection)
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.