コード例 #1
0
 public override void Send(MailRequestMessage reqMsg)
 {
     Send(
         server: smtpSetting.Host,
         sender: smtpSetting.UserName,
         recipient: reqMsg.Recipient,
         cc: reqMsg.CC,
         subject: reqMsg.Subject,
         body: reqMsg.Body,
         isBodyHtml: reqMsg.IsBodyHtml,
         encoding: reqMsg.Encoding,
         isAuthentication: true,
         files: null
         );
 }
コード例 #2
0
 public abstract void Send(MailRequestMessage reqMsg);