Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SendMailAsync() [4/4]

Task System.Net.Mail.SmtpClient.SendMailAsync ( string from,
string recipients,
string? subject,
string? body,
CancellationToken cancellationToken )
inline

Definition at line 689 of file SmtpClient.cs.

690 {
691 MailMessage message = new MailMessage(from, recipients, subject, body);
692 return SendMailAsync(message, cancellationToken);
693 }
Task SendMailAsync(string from, string recipients, string? subject, string? body)

References System.cancellationToken, and System.Net.Mail.SmtpClient.SendMailAsync().