public string SendMessageText(
string subject,
string body,
MailAddress address,
params Attachment[] attachments
)
Public Function SendMessageText (
subject As String,
body As String,
address As MailAddress,
ParamArray attachments As Attachment()
) As String
Dim instance As GmailClient
Dim subject As String
Dim body As String
Dim address As MailAddress
Dim attachments As Attachment()
Dim returnValue As String
returnValue = instance.SendMessageText(subject,
body, address, attachments)
public:
String^ SendMessageText(
String^ subject,
String^ body,
MailAddress^ address,
... array<Attachment^>^ attachments
)
member SendMessageText :
subject : string *
body : string *
address : MailAddress *
attachments : 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.SendMessageText(System.String,System.String,System.Net.Mail.MailAddress,System.Net.Mail.Attachment[])"]
No code example is currently available or this language may not be supported.
SendMessageText("Email Subject", "Message Body", New MailAddress("address@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.