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

◆ Send()

static bool System.Net.Mail.RecipientCommand.Send ( SmtpConnection conn,
string to,
out string response )
inlinestaticpackage

Definition at line 51 of file RecipientCommand.cs.

52 {
53 PrepareCommand(conn, to);
54 SmtpStatusCode statusCode = CheckCommand.Send(conn, out response);
55 return CheckResponse(statusCode, response);
56 }
static bool CheckResponse(SmtpStatusCode statusCode, string response)
static void PrepareCommand(SmtpConnection conn, string to)

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

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