在电子邮件正文 MVC 中发送视图
我想在 mvc 中发送电子邮件正文中的视图。 请指导如何呈现视图,以便它可以作为 html 电子邮件正文发送。
谢谢,
I want to send a view in email body in mvc.
please guide how to render view so that it can be sent as html email body.
thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
考虑使用类似 ActionMailer 的东西。您可以使用 NuGet 下载它。
Consider using something like ActionMailer. You can download it using NuGet.
字符串路径 = ConfigurationManager.AppSettings["ProjectPath"] ;
string gmailpath = 路径 + "/" + "Driver/VerificedAccount?code=" + root.Result.EmailVerificationCode;
var st = EmailclassHtml(sendemail.Email, "验证驱动程序", body);
公共字符串EmailclassHtml(字符串电子邮件,字符串主题名称,字符串消息)
{
string path = ConfigurationManager.AppSettings["ProjectPath"] ;
string gmailpath = path + "/" + "Driver/VerificedAccount?code=" + root.Result.EmailVerificationCode;
var st = EmailclassHtml(sendemail.Email, "Verification-Driver", body);
public string EmailclassHtml(string email, string subjectname, string messgae)
{