public static Task SendMailHtmlAsync(
SmtpClient smtpClient,
NetworkCredential credential,
string subject,
string body,
MailAddress address,
ICollection<Attachment> attachments
)
Public Shared Function SendMailHtmlAsync (
smtpClient As SmtpClient,
credential As NetworkCredential,
subject As String,
body As String,
address As MailAddress,
attachments As ICollection(Of Attachment)
) As Task
Dim smtpClient As SmtpClient
Dim credential As NetworkCredential
Dim subject As String
Dim body As String
Dim address As MailAddress
Dim attachments As ICollection(Of Attachment)
Dim returnValue As Task
returnValue = UtilMail.SendMailHtmlAsync(smtpClient,
credential, subject, body, address,
attachments)
public:
static Task^ SendMailHtmlAsync(
SmtpClient^ smtpClient,
NetworkCredential^ credential,
String^ subject,
String^ body,
MailAddress^ address,
ICollection<Attachment^>^ attachments
)
static member SendMailHtmlAsync :
smtpClient : SmtpClient *
credential : NetworkCredential *
subject : string *
body : string *
address : MailAddress *
attachments : ICollection<Attachment> -> Task
No code example is currently available or this language may not be supported.
[Missing <param name="smtpClient"/> documentation for "M:DevCase.Core.Networking.Mailing.UtilMail.SendMailHtmlAsync(System.Net.Mail.SmtpClient,System.Net.NetworkCredential,System.String,System.String,System.Net.Mail.MailAddress,System.Collections.Generic.ICollection{System.Net.Mail.Attachment})"]
[Missing <returns> documentation for "M:DevCase.Core.Networking.Mailing.UtilMail.SendMailHtmlAsync(System.Net.Mail.SmtpClient,System.Net.NetworkCredential,System.String,System.String,System.Net.Mail.MailAddress,System.Collections.Generic.ICollection{System.Net.Mail.Attachment})"]
No code example is currently available or this language may not be supported.
Dim credential As New NetworkCredential("Username@Hotmail.com", "Password")
Dim attachments As New Collection(Of Attachment) From {New Attachment("C:\File1.txt"), New Attachment("C:\File2.txt")}
Await SendMailHtmlAsync(DevCase.Core.NET.SmtpClients.MicrosoftLiveSmtpClient, credential, "Email Subject", "Message Body", New MailAddress("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.