er, string serverUsername, string serverPassword) { return Send(message, smtpServer, serverUsername, serverPassword, this._defaultSmtpPort); }
public abstract bool Send(MailMessage message, string smtpServer, string serverUsername, string serverPassword, int smtpPort);
public static string[] GetTo(MailMessage message) { if (message == null) throw new ArgumentNullException("message");
if (Globals.IsNullorEmpty(message.To)) return null;
return message.To.Split(';'); }
public static string[] GetCc(MailMessage message) { if (message == null) throw new ArgumentNullException("message");
if (Globals.IsNullorEmpty(message.Cc)) &nbs 上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] ... 下一页 >> |