public string SendMessageHtml(
string subject,
string body,
string[] addresses,
ICollection<Attachment> attachments
)
Public Function SendMessageHtml (
subject As String,
body As String,
addresses As String(),
attachments As ICollection(Of Attachment)
) As String
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim addresses As String()
Dim attachments As ICollection(Of Attachment)
Dim returnValue As String
returnValue = instance.SendMessageHtml(subject,
body, addresses, attachments)
public:
String^ SendMessageHtml(
String^ subject,
String^ body,
array<String^>^ addresses,
ICollection<Attachment^>^ attachments
)
member SendMessageHtml :
subject : string *
body : string *
addresses : string[] *
attachments : ICollection<Attachment> -> 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.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")}
SendMessageHtml("Email Subject", "Message Body", {"address1@domain.com", "address2@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.