MVCMailer smtp邮件设置以编程方式设置配置设置
本文关键字:设置 编程 方式 配置 MVCMailer smtp | 更新日期: 2023-09-27 17:50:36
MVCMailer使用来自web的smtp设置。配置文件如下:
<system.net>
<mailSettings>
<smtp from="some-email@gmail.com">
<network enableSsl="true" host="smtp.gmail.com" port="587" userName="some-email@gmail.com" password="valid-password" />
</smtp>
</mailSettings>
</system.net>
控制器:
public virtual MvcMailMessage Welcome()
{
//ViewBag.Data = someObject;
return Populate(x => {
x.ViewName = "Welcome";
x.To.Add("some-email@example.com");
x.Subject = "Welcome";
});
}
是否有办法在代码中设置SMTP设置?我想避免在网上保存密码。配置文件。
使用具有所需属性的SmtpClient调用SmtpClientWrapper
SmtpClient client = new SmtpClient("mail.example.com", 995);
SmtpClientWrapper wrapper = new SmtpClientWrapper(client);