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

◆ Send()

static void System.Net.Mail.MailCommand.Send ( SmtpConnection conn,
byte[] command,
MailAddress from,
bool allowUnicode )
inlinestaticpackage

Definition at line 51 of file MailCommand.cs.

52 {
53 PrepareCommand(conn, command, from, allowUnicode);
54 string response;
55 SmtpStatusCode statusCode = CheckCommand.Send(conn, out response);
56 CheckResponse(statusCode, response);
57 }
static void PrepareCommand(SmtpConnection conn, byte[] command, MailAddress from, bool allowUnicode)
static void CheckResponse(SmtpStatusCode statusCode, string response)

References System.Net.Mail.MailCommand.CheckResponse(), System.Net.Mail.MailCommand.PrepareCommand(), and System.Net.Mail.CheckCommand.Send().

Referenced by System.Net.Mail.SmtpTransport.SendMail().