我有一个PartialView,其中包含带有Razor批注的HTML代码。它为我生成了一个我想通过电子邮件发送给任何人的页面。有没有办法将此PartialView转换为HTML内容以发送它?

最佳答案

我建议使用 MvcMailer 来实现您想要的功能(无需编写代码。它也可以异步执行):

https://github.com/smsohan/MvcMailer/wiki/MvcMailer-Step-by-Step-Guide

更新

如评论中所述,您自己实现的解决方案(我仍然认为MvcMailer将使您的生活更轻松):

protected string RenderPartialViewToString(string viewName, object model)
{
    if (string.IsNullOrEmpty(viewName))
        viewName = ControllerContext.RouteData.GetRequiredString("action");

    ViewData.Model = model;

    using (StringWriter sw = new StringWriter()) {
        ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext, viewName);
        ViewContext viewContext = new ViewContext(ControllerContext, viewResult.View, ViewData, TempData, sw);
        viewResult.View.Render(viewContext, sw);

        return sw.GetStringBuilder().ToString();
    }
}

(ASP.NET MVC Razor: How to render a Razor Partial View's HTML inside the controller action)

关于c# - 通过电子邮件发送PartialView内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15933972/

10-13 08:40