public static Task SendMailTextAsync(
SmtpClient smtpClient,
string username,
string password,
string subject,
string body,
MailAddress address
)
Public Shared Function SendMailTextAsync (
smtpClient As SmtpClient,
username As String,
password As String,
subject As String,
body As String,
address As MailAddress
) As Task
Dim smtpClient As SmtpClient
Dim username As String
Dim password As String
Dim subject As String
Dim body As String
Dim address As MailAddress
Dim returnValue As Task
returnValue = UtilMail.SendMailTextAsync(smtpClient,
username, password, subject, body,
address)
public:
static Task^ SendMailTextAsync(
SmtpClient^ smtpClient,
String^ username,
String^ password,
String^ subject,
String^ body,
MailAddress^ address
)
static member SendMailTextAsync :
smtpClient : SmtpClient *
username : string *
password : string *
subject : string *
body : string *
address : MailAddress -> 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.SendMailTextAsync(System.Net.Mail.SmtpClient,System.String,System.String,System.String,System.String,System.Net.Mail.MailAddress)"]
[Missing <returns> documentation for "M:DevCase.Core.Networking.Mailing.UtilMail.SendMailTextAsync(System.Net.Mail.SmtpClient,System.String,System.String,System.String,System.String,System.Net.Mail.MailAddress)"]
No code example is currently available or this language may not be supported.
Await SendMailTextAsync(DevCase.Core.NET.SmtpClients.MicrosoftLiveSmtpClient, "Username@Hotmail.com", "Password", "Email Subject", "Message Body", New MailAddress("address@domain.com"))
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.