使用 WPF 桌面应用程序发送 HTML 电子邮件

发布于 2024-10-16 04:38:00 字数 141 浏览 4 评论 0原文

我正在寻找构建一个电子邮件桌面应用程序,用于使用 Html 模板批量发送电子邮件。 我使用了system.net.mail的基础知识并成功发送了纯文本邮件。但现在我想向邮件添加适合批量邮件的HTML内容。

请向我提供解释我的需求或通过示例显示代码的链接

I am looking to build an Email Desktop Application for Bulk Email Sending with Html Templates.
I Used the basics of system.net.mail and successfully sent a plain text mail .But now I want to add a HTML content to mail which Suitable for BULK Mail.

Please provide me the links which explain my needs or show the code with an example

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

慕巷 2024-10-23 04:38:00

使用 System.Net.Mail,这非常简单 - 只需将 MailMessage.IsBodyHtml 设置为 true,然后用 HTML 字符串填充正文即可。请参阅 MSDN:http://msdn.microsoft。 com/en-us/library/system.net.mail.mailmessage.isbodyhtml.aspx

当然,生成漂亮的 HTML 是更困难的部分,但是有很多方法可以做到这一点。

Using System.Net.Mail, this is trivially easy - just set MailMessage.IsBodyHtml to true, then fill in the body with a string of HTML. See MSDN : http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.isbodyhtml.aspx

Of course, generating pretty HTML is the harder part, but there's lots of ways to do that.

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