提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|行业资讯|编辑:胡涛|2024-05-13 11:07:46.537|阅读 10 次
概述:本文将使 C# 开发人员能够以编程方式将EML或MSG转换为其他流行的文件格式
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
本文将使 C# 开发人员能够以编程方式将EML或MSG转换为其他流行的文件格式。Aspose.Email 提供了类和方法以及在线 电子邮件转换器工具,可将 EML无缝转换为PNG 。如果不安装第三方软件,则无法打开 EML/MSG 文件。因此,将 EML/MSG 转换为 PNG 和JPG等图像文件格式将允许您轻松查看这些文件。因此,在本指南中,我们将通过一段代码片段来使用C#构建电子邮件转换软件。在继续之前,请确保您有源EML和MSG文件来实现该功能。
Aspose.Email 是用于轻松的开发 email 功能的应用程序的一组控件,基于 ASP.NET 的Web应用、Web服务和Windows 应用。支持 Outlook PST, EML, MSG, and MHT 格式. 允许开发者直接与 SMTP, POP, FTP, 和 MS Exchange 服务器进行工作。支持邮件合并、行事历、定制邮件标题和内容、嵌入文件等,Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
要安装此企业级 .NET 库,请在NuGet包管理器中运行以下命令或在此处下载 DLL 文件。
Install-Package Aspose.Email
除了Aspose.Email for .NET之外,您还需要安装Aspose.Words for .NET API。
Install-Package Aspose.Words
Aspose.Email for .NET为开发人员提供了完整的安装指南。此外,安装需要几秒钟,您就可以开始使用 API 将EML 转换为 PNG 或 MSG 转换为 PNG。
现在,我们可以编写一个代码示例,以编程方式用 C# 构建电子邮件转换器工具。
以下步骤展示了如何构建电子邮件转换软件以将 EML 转换为 PNG:
以下代码片段在 C# 中将 EML 转换为 PNG。
using Aspose.Email; using Aspose.Words; namespace Aspose.Email { class EMLtoPNG { // Email conversion software for C# Developers - EML to PNG static void Main(string[] args) { string dataDir = "/sample-files/"; // Create an object of the EmlLoadOptions class that will be used to load MailMessage from EML format. EmlLoadOptions emlLoadOptions = new EmlLoadOptions(); // Set a value of RemoveSignature property to indicate whether signature will be removed while loading. emlLoadOptions.RemoveSignature = false; // Invoke the Load method of the MailMessage class to load the source eml file. MailMessage msg = MailMessage.Load(dataDir + "sample.eml", emlLoadOptions); // Set the Sensitivity of the message. msg.Sensitivity = MailSensitivity.Normal; // Set the Priority of the message. msg.Priority = MailPriority.High; // Instantiate an instance of the MemoryStream class. MemoryStream msgStream = new MemoryStream(); // Convert EML to MHTML and save to stream by calling the Save method. msg.Save(msgStream, SaveOptions.DefaultMhtml); // Invoke the Position property and set the current position within the stream. msgStream.Position = 0; // Initialize an instance of the Document class with the MHTML stream. Document msgDocument = new Document(msgStream); // Save the document as PNG image by calling the Save method. msgDocument.Save(dataDir + "Outlook-Aspose_out.png", SaveFormat.Png); } } }
您可以在下图中看到输出:
同样,您可以通过在上面的代码片段中进行以下更改来将MSG 转换为 PNG :
以下代码示例演示了如何在.NET中将MSG转换为PNG:
using Aspose.Email; using Aspose.Words; namespace Aspose.Email { class MSGtoPNG { // Email conversion software for C# Developers - MSG to PNG static void Main(string[] args) { string dataDir = "/sample-files/"; // Create an object of the MsgLoadOptions class that will be used to load MailMessage from MSG format. MsgLoadOptions msgLoadOptions = new MsgLoadOptions(); // Set a value of RemoveSignature property to indicate whether signature will be removed while loading. msgLoadOptions.RemoveSignature = false; // Invoke the Load method of the MailMessage class to load the source MSG file. MailMessage msg = MailMessage.Load(dataDir + "sample.msg", msgLoadOptions); // Set the Sensitivity of the message. msg.Sensitivity = MailSensitivity.Normal; // Set the Priority of the message. msg.Priority = MailPriority.High; // Instantiate an instance of the MemoryStream class. MemoryStream msgStream = new MemoryStream(); // Convert MSG to MHTML and save to stream by calling the Save method. msg.Save(msgStream, SaveOptions.DefaultMhtml); // Invoke the Position property and set the current position within the stream. msgStream.Position = 0; // Initialize an instance of the Document class with the MHTML stream. Document msgDocument = new Document(msgStream); // Save the document as PNG image by calling the Save method. msgDocument.Save(dataDir + "Outlook-Aspose_out.png", SaveFormat.Png); } } }
免费电子邮件转换器 - 现场演示
我们学习了如何为 C# 开发人员开发电子邮件转换软件。这里有一个在线工具,可以在线将 EML 转换为 PNG。它由Aspose.Email提供支持。此外,此电子邮件转换器工具是基于网络的,并具有用户友好的界面,您也可以在手机上使用此电子邮件转换器。最重要的是,它是免费的,您在使用它之前不需要进行任何订阅。
我们在此结束这篇博文,希望本文对您有所帮助。我们已经了解了如何使用Aspose.Email for .NET在 C# 中构建电子邮件转换软件。此外,我们探索了一个在线电子邮件转换器工具,可以在线将 EML 转换为 PNG。
欢迎下载|体验更多Aspose文档管理产品
获取更多信息请咨询 或 加入Aspose技术交流群(761297826)
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
通过提供强大的3D CAD数据访问工具并适用于桌面、移动和Web的高级环境3D可视化发动机,HOOPS在提升造船设计和制造流程的效率方面发挥了重要作用。
HOOPS Luminate在汽车行业中的应用具有广泛的潜力和深远的影响。它通过提供高效的3D可视化、虚拟装配与拆解、性能分析、客户定制等功能,帮助汽车制造商在设计、生产和销售过程中提升效率、降低成本并提高产品质量。
在不断发展的软件开发世界中,使工具和框架与最新的平台版本保持同步至关重要,欢迎查阅~
全球航运业对国际贸易至关重要,全球 90% 以上的商品通过海运运输。准确监控和控制这些集装箱的移动对于维持高效的供应链至关重要。手动输入集装箱号码是这一程序的关键部分,它带来了相当大的挑战,例如人为错误和效率低下。
专业的电子表格控件,无需MS Excel也可满足一切Excel表格功能。
Aspose.Words for .NET无需Microsoft Word也可在任何平台上满足Word文档的一切操作需求。
Aspose.ChartAspose.Chart 是一款针对.Net应用程序开发的经济和金融图表控件。 它可以使你的.Net应用程序制作出21种不同类型的图表,其中包括有:面积图,条形图,泡沫图,等高线图,烛台图表,方块图,曲线图,曲面图,圆环图,甘特图,HighLowClose,线条图,OpenHighLowClose,柏拉图,饼状图,菱形图,点图,雷达图,散点图,茎叶图,地面天气图,以及上述类型图表的许多变种图。Aspose.Chart 同样支持许多强大的功能包括:3D 绘图,外筐边界,抗锯齿功能,透明度,倾斜度,自定义绘图以及图像合并等功能。提供Aspose.Chart下载、Aspose.Chart授权、Aspose.Chart培训、Aspose.Chart购买、Aspose.Chart相关咨询服务。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢