MvcMailer 在浏览器中查看

发布于 2024-11-05 20:03:58 字数 239 浏览 0 评论 0原文

我在我的网站上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平生欢 2024-11-12 20:03:58

最简单的方法是在电子邮件中放置一个返回您网站的链接,然后创建一个使用相同视图的控制器/操作,并构建一个与创建电子邮件时使用的模型相同的模型。

如果您需要的所有数据都在数据库中,您可能只需在查询字符串中传递一个键(注意:如果邮件包含潜在的敏感信息,请确保 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文