MvcMailer 在浏览器中查看
我在我的网站上使用 MvcMailer 发送 html 电子邮件。 看起来不错,但我只是想知道如何在浏览器中查看创建的电子邮件。
例如,在一些时事通讯中,他们说“在浏览器中查看此电子邮件”,所以我只是想知道如何使用 MvcMailer 做到这一点。
I am using MvcMailer with my website to send html emails.
seems good, but im just wondering how i can view the created emails in a browser.
eg in some newsletters they say "view this email in a browser", so i am just wondering how I can do that with MvcMailer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是在电子邮件中放置一个返回您网站的链接,然后创建一个使用相同视图的控制器/操作,并构建一个与创建电子邮件时使用的模型相同的模型。
如果您需要的所有数据都在数据库中,您可能只需在查询字符串中传递一个键(注意:如果邮件包含潜在的敏感信息,请确保 url 是防篡改的),否则您可能需要传递更多数据,以便您能够重建与生成电子邮件时相同的视图。
The easiest way is to put a link in the email back to your site, and then create a controller/action that uses the same view, and builds a model the same as the one you used when creating the email.
If all the data you need is in the database, you may be able to just pass a key in the querystring (note: if the mail contains potentially sensitive information, make sure the url is tamper-proof), otherwise you might need to pass in more data to allow you to reconstruct the same view that you did when generating the email.