使用 WPF 桌面应用程序发送 HTML 电子邮件
我正在寻找构建一个电子邮件桌面应用程序,用于使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.aspxOf course, generating pretty HTML is the harder part, but there's lots of ways to do that.