Outlook 电子邮件是否有非二进制格式?
我想在网络服务器上创建一个将在 Microsoft Outlook 中打开的电子邮件文件。似乎会派上用场的两种格式是 .MSG 格式和 .OFT 格式。
然而,两者似乎都是带有一堆流的 GZIP 格式。这很难在网络服务器上生成。
是否有可用于对简单电子邮件进行编码的 XML 或基于文本的格式?
如果没有,是否有免费的 .NET 库可以即时生成电子邮件?
谢谢! 麦克风
I want to create an e-mail file on a web server that will open in Microsoft Outlook. It appears the two formats that would come in handy are the .MSG format and .OFT format.
However, both appear to be GZIP'ed formats with a bunch of streams. This would be tough to generate on a web server.
Is there an XML or text based format I can use to encode a simple email?
If not, is there a free .NET library that can generate an email message on the fly?
Thanks!
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 System.Net.Mail 并写入文件系统:
Just use System.Net.Mail and write to the file system:
我决定使用 OpenMCDF 动态构建一个文件。这工作得很好,并且它是一个不错的(并且免费的)框架,用于处理紧凑的二进制文件。
I decided to use OpenMCDF to build a file on the fly. This is working pretty well, and it's a decent (and free) framework for working with compact binary files.