Outlook 电子邮件是否有非二进制格式?

发布于 2024-12-02 13:16:07 字数 250 浏览 1 评论 0原文

我想在网络服务器上创建一个将在 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 技术交流群。

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

发布评论

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

评论(2

难理解 2024-12-09 13:16:07

只需使用 System.Net.Mail 并写入文件系统:

<system.net>  
   <mailSettings>  
      <smtp deliveryMethod="SpecifiedPickupDirectory">  
         <specifiedPickupDirectory 
             pickupDirectoryLocation="c:\yourdirectory"/>  
      </smtp>  
   </mailSettings>  
</system.net>

Just use System.Net.Mail and write to the file system:

<system.net>  
   <mailSettings>  
      <smtp deliveryMethod="SpecifiedPickupDirectory">  
         <specifiedPickupDirectory 
             pickupDirectoryLocation="c:\yourdirectory"/>  
      </smtp>  
   </mailSettings>  
</system.net>
无畏 2024-12-09 13:16:07

我决定使用 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.

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