Asp.Net 邮政 MVC - 当前上下文中不存在名称 'Html'
Asp.Net Postal MVC - The name 'Html' does not exist in the current context
我正在使用 asp.net Postal 通过后台作业发送电子邮件 - 准确地说是 Hangfire。
在我的模板中有以下代码:
@Html.Raw(Model.Post.PostContent)
但我收到以下错误:
The name 'Html' does not exist in the current context
下面是完整的模板:
Views/Emails/Example.cshtml
@model ExampleEmail
To: @Model.To
From: @Model.From
Subject: @Model.Subject
Views: Text, Html
Views/Emails/Example.Html.cshtml
Content-Type: text/html; charset=utf-8
<html>
<body>
<p>@Html.Raw(Model.Post.PostContent)</p>
</body>
</html>
我该如何解决这个问题?
使用 @Raw(Model.Post.PostContent)
似乎有效
我正在使用 asp.net Postal 通过后台作业发送电子邮件 - 准确地说是 Hangfire。
在我的模板中有以下代码:
@Html.Raw(Model.Post.PostContent)
但我收到以下错误:
The name 'Html' does not exist in the current context
下面是完整的模板:
Views/Emails/Example.cshtml
@model ExampleEmail
To: @Model.To
From: @Model.From
Subject: @Model.Subject
Views: Text, Html
Views/Emails/Example.Html.cshtml
Content-Type: text/html; charset=utf-8
<html>
<body>
<p>@Html.Raw(Model.Post.PostContent)</p>
</body>
</html>
我该如何解决这个问题?
使用 @Raw(Model.Post.PostContent)
似乎有效