如何从视图生成字符串(.aspx 或 .ascx)
如何以字符串格式获取已解析(<%%> 已解析)视图(aspx 或 ascx)?我想要包含一些 <%= ... %>
代码块的 .ascx 文件,并且我希望能够将其作为 HTML 格式的电子邮件的一部分发送。我怎样才能用 MVC 做到这一点?
How can I get the resolved (<%%> resolved) view (aspx or ascx) in a string format? I want to have .ascx file with some <%= ... %>
code blocks and I want to be able to send it as part of e-mail in HTML format. How can I do this with MVC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不确定这是否适用于部分视图,但我使用这种和平的代码将视图呈现为字符串。
Not sure if this works with partial views, but I use this peace of code to render a view as a string.
不要采取困难的方式,请查看 MvcMailer 或 邮政。这将使您的生活变得更加轻松。不仅如此,您还将有更多的时间专注于解决一些实际的业务问题,而不是像这样已经解决的问题。
Don't do it the hard way, checkout MvcMailer or Postal. It will make your life much easier. And not only that but you will have more time to focusing on solving some real business problems rather than plumbing stuff like this which have already been addressed.
您可以使用 MailMessage 类来生成邮件。您可以在单独的自定义操作过滤器中推出电子邮件创建逻辑,以保持控制器操作的精简和电子邮件逻辑的可重用性。
[更新]
自定义操作过滤器可以是这样的:
You can make use of the MailMessage class to generate the mail. You can roll out the email creation logic in a separate custom action filter to keep the controller action lean and the email logic reusable.
[UPDATE]
The custom action filter can be like :