不确定是否有其他人遇到此问题,但我正在尝试使用MVCMailer发送电子邮件。我能够安装并更新T4Scaffolding包而没有任何问题。
我有一个创建报告的aspx页面,我想要将该报告附加到电子邮件中。但是,当我转向并在UserMailers类中调用我的SendReport方法时,它会在PopulateBody调用上抛出一个错误,指出routeData为null
这是我的代码
public class UserMailer : MailerBase, IUserMailer
{
/// <summary>
/// Email Reports using this method
/// </summary>
/// <param name="toAddress">The address to send to.</param>
/// <param name="viewName">The name of the view.</param>
/// <returns>The mail message</returns>
public MailMessage SendReport(string toAddress, string viewName)
{
var message = new MailMessage { Subject = "Report Mail" };
message.To.Add(toAddress);
ViewBag.Name = "Testing-123";
this.PopulateBody(mailMessage: message, viewName: "SendReport");
return message;
}
}
我得到的错误是“值不能为空。参数名称:routeData”
我在线查看并且没有找到任何与此问题相关的内容或任何遇到此问题的人。
答案 0 :(得分:2)
出于某种原因,它被称为 Mvc 梅勒。 您不能在普通的asp.net(.aspx)项目中使用它,只能在MVC项目中使用它。
答案 1 :(得分:0)
正如Filip所说,它不能在ASP.NET ASPX页面的代码隐藏中使用,因为没有ControllerContext
/ RequestContext
。
对我来说最简单的方法是创建一个控制器操作,然后使用WebClient
从ASPX页面发出http请求。
protected void Button1_Click(object sender, EventArgs e)
{
WebClient wc = new WebClient();
var sendEmailUrl = "https://" + Request.Url.Host +
Page.ResolveUrl("~/email/SendGenericEmail") +
"?emailAddress=email@example.com" + "&template=Template1";
wc.DownloadData(sendEmailUrl);
}
然后我有一个简单的控制器
public class EmailController : Controller
{
public ActionResult SendGenericEmail(string emailAddress, string template)
{
// send email
GenericMailer mailer = new GenericMailer();
switch (template)
{
case "Template1":
var email = mailer.GenericEmail(emailAddress, "Email Subject");
email.Send(mailer.SmtpClient);
break;
default:
throw new ApplicationException("Template " + template + " not handled");
}
return new ContentResult()
{
Content = DateTime.Now.ToString()
};
}
}
当然有许多问题,例如安全性,协议(控制器无法访问原始页面),错误处理 - 但是如果你发现自己卡住了,这可以工作。