public static Task SendMailHtmlAsync(
SmtpClient smtpClient,
NetworkCredential credential,
string subject,
string body,
MailAddressCollection addresses
)
Public Shared Function SendMailHtmlAsync (
smtpClient As SmtpClient,
credential As NetworkCredential,
subject As String,
body As String,
addresses As MailAddressCollection
) As Task
Dim smtpClient As SmtpClient
Dim credential As NetworkCredential
Dim subject As String
Dim body As String
Dim addresses As MailAddressCollection
Dim returnValue As Task
returnValue = UtilMail.SendMailHtmlAsync(smtpClient,
credential, subject, body, addresses)
public:
static Task^ SendMailHtmlAsync(
SmtpClient^ smtpClient,
NetworkCredential^ credential,
String^ subject,
String^ body,
MailAddressCollection^ addresses
)
static member SendMailHtmlAsync :
smtpClient : SmtpClient *
credential : NetworkCredential *
subject : string *
body : string *
addresses : MailAddressCollection -> 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.MailAddressCollection)"]
[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.MailAddressCollection)"]
No code example is currently available or this language may not be supported.
Dim credential As New NetworkCredential("Username@Hotmail.com", "Password")
Dim addressCollection As New MailAddressCollection
addressCollection.Add(New MailAddress("address1@domain.com"))
addressCollection.Add(New MailAddress("address2@domain.com"))
Await SendMailHtmlAsync(DevCase.Core.NET.SmtpClients.MicrosoftLiveSmtpClient, credential, "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.