5

MVCMailer 使用 web.config 文件中的 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 设置吗?我想避免将密码保存在 web.config 文件中。

4

1 回答 1

10

SmtpClientWrapper使用具有您需要的属性的 SmtpClient调用。

SmtpClient client = new SmtpClient("mail.example.com", 995);
SmtpClientWrapper wrapper = new SmtpClientWrapper(client);
于 2013-01-04T13:15:23.290 回答