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

◆ Send() [2/2]

void System.Net.Mail.SmtpClient.Send ( string from,
string recipients,
string? subject,
string? body )
inline

Definition at line 401 of file SmtpClient.cs.

402 {
403 if (_disposed)
404 {
405 throw new ObjectDisposedException(GetType().FullName);
406 }
407 MailMessage message = new MailMessage(from, recipients, subject, body);
408 Send(message);
409 }
void Send(string from, string recipients, string? subject, string? body)

References System.Net.Mail.SmtpClient._disposed, System.FullName, and System.Net.Mail.SmtpClient.Send().

Referenced by System.Net.Mail.SmtpClient.Send().