我们在项目中经常会有报警通知,业务通知用户的场景,通知的手段有短信、电话、群通知、邮件通知等。其中邮件通知是比较常见的场景,比如登录验证码,找回账户验证码,绑定邮箱,又或者是审批通知、会议通知等等。
实现的思路:
1.首先系统中会维护一个系统邮箱账户密码,关于系统中的通知全由该账户进行发送。
2.建立邮件任务表以及邮件日志表,当业务端有发邮件需求时,往邮件任务表中插入任务数据,记录标题、内容、收件人等信息。
3.邮件任务执行服务,根据任务表中的数据进行任务执行,执行结束对任务状态进行标记,执行失败则进行延迟再次执行,直到执行重试次数结束 进行执行失败标记。执行结束进行日志记录。
MailKit 是C#邮件推送常用的库,可在NUGET上进行安装使用。
///
/// 发送邮件
///
/// 邮件基础信息
/// 发件人基础信息
public static SendResultEntity SendMail(MailBodyEntity mailBodyEntity,
SendServerConfigurationEntity sendServerConfiguration)
{
if (mailBodyEntity == null)
{
throw new ArgumentNullException();
}
if (sendServerConfiguration == null)
{
throw new ArgumentNullException();
}
var sendResultEntity = new SendResultEntity();
using (var client = new SmtpClient(new ProtocolLogger(MailMessage.CreateMailLog())))
{
client.ServerCertificateValidationCallback = (s, c, h, e) => true;
Connection(mailBodyEntity, sendServerConfiguration, client, sendResultEntity);
if (sendResultEntity.ResultStatus == false)
{
return sendResultEntity;
}
SmtpClientBaseMessage(client);
// Note: since we don't have an OAuth2 token, disable
// the XOAUTH2 authentication mechanism.
client.AuthenticationMechanisms.Remove("XOAUTH2");
Authenticate(mailBodyEntity, sendServerConfiguration, client, sendResultEntity);
if (sendResultEntity.ResultStatus == false)
{
return sendResultEntity;
}
Send(mailBodyEntity, sendServerConfiguration, client, sendResultEntity);
if (sendResultEntity.ResultStatus == false)
{
return sendResultEntity;
}
client.Disconnect(true);
}
return sendResultEntity;
}