提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:李显亮|2020-08-12 10:17:15.810|阅读 391 次
概述:在本文中,将学习如何在C ++应用程序中发送Outlook电子邮件。电子邮件可以在运行时创建,也可以从已保存的电子邮件文件(例如.msg,.emlx或其他文件)加载。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
如今,电子邮件自动化非常流行,它可以从Web或桌面应用程序内部自动生成和发送电子邮件。它用于发送重要的通知,文档,新闻通讯和各种其他消息。为了开发自动化的电子邮件系统,Aspose通过其电子邮件API – Aspose.Email方便了开发人员。
Aspose.Email for C ++是一种电子邮件编程API,使开发人员可以更轻松地使用多种格式,例如MSG,EML,EMLX和MHT。应用程序开发人员可以在本机C ++应用程序中创建,转换或处理最常用的消息格式,而无需依赖Office Automation或Microsoft Outlook应用程序。
在上一篇文章中,您已经了解了如何使用C ++ 以编程方式创建MS Outlook电子邮件,包括MSG,EML和EMLX。在本文中,您将学习如何在C ++应用程序中发送Outlook电子邮件。电子邮件可以在运行时创建,也可以从已保存的电子邮件文件(例如.msg,.emlx或其他文件)加载。
以下是使用Aspose.Email for C ++通过SMTP客户端发送Outlook电子邮件的步骤。
下面的代码示例演示如何使用C ++发送Outlook电子邮件。
// Create a new instance of MailMessage class
System::SharedPtrmessage = System::MakeObject();
System::SharedPtrclient = System::MakeObject();
// Set subject of the message, Html body and sender information
message->set_Subject(u"New message created by Aspose.Email for .NET");
message->set_From(System::MakeObject(L"from@domain.com", L"Sender Name", false));
message->set_Body(System::String(u"This line is in bold. ") + u"This line is in blue color");
message->set_BodyEncoding(System::Text::Encoding::get_ASCII());
// Add TO recipients and Add CC recipients
message->get_To()->Add(System::MakeObject(L"to1@domain.com", L"Recipient 1", false));
message->get_To()->Add(System::MakeObject(L"to2@domain.com", L"Recipient 2", false));
message->get_CC()->Add(System::MakeObject(L"cc1@domain.com", L"Recipient 3", false));
// Specify your mailing host server, Username, Password, Port # and Security option
client->set_Host(u"mail.server.com");
client->set_Username(u"username");
client->set_Password(u"password");
client->set_Port(587);
client->set_SecurityOptions(Aspose::Email::Clients::SecurityOptions::SSLExplicit);
try
{
// Send this message
client->Send(message);
}
catch (System::Exception& ex)
{
}
还可以指定电子邮件的备用视图,以创建其他格式的邮件副本。例如,如果您的消息是HTML格式,则可以创建一个包含纯文本的备用视图。为了创建备用视图,可以使用MailMessage-> get_AlternateViews()-> Add(AlternateView :: CreateAlternateViewFromString(u” text”))方法。
下面的代码示例演示如何使用C ++发送具有备用视图的电子邮件。
// Create an instance of MailMessage class System::SharedPtrmessage = System::MakeObject(); // From and To field message->set_From(u"sender@sender.com"); message->get_To()->Add(u"receiver@receiver.com"); System::SharedPtralternate; // Create an instance of AlternateView to view an email message using the content specified in the string alternate = AlternateView::CreateAlternateViewFromString(u"This is the alternate Text"); // Add alternate text message->get_AlternateViews()->Add(alternate); // Create an instance of SmtpClient Class System::SharedPtrclient = System::MakeObject(); // Specify your mailing host server, user name, mail password and Port # client->set_Host(u"smtp.server.com"); client->set_Username(u"Username"); client->set_Password(u"Password"); client->set_Port(25); try { // Client->Send will send this message client->Send(message); } catch (System::Exception& ex) { System::Diagnostics::Trace::WriteLine(System::ObjectExt::ToString(ex)); }
在某些情况下,您需要一次发送大量电子邮件。对于这种情况,Aspose.Email for C ++提供MailMessageCollection类来封装多封电子邮件。以下是发送大量电子邮件的步骤。
下面的代码示例演示如何使用C ++发送大量电子邮件。
// Create SmtpClient as client and specify server, port, user name and password System::SharedPtrclient = System::MakeObject(u"mail.server.com", 25, u"Username", u"Password"); // Create instances of MailMessage class and Specify To, From, Subject and Message System::SharedPtrmessage1 = System::MakeObject(u"msg1@from.com", u"msg1@to.com", u"Subject1", u"message1, how are you?"); System::SharedPtrmessage2 = System::MakeObject(u"msg1@from.com", u"msg2@to.com", u"Subject2", u"message2, how are you?"); System::SharedPtrmessage3 = System::MakeObject(u"msg1@from.com", u"msg3@to.com", u"Subject3", u"message3, how are you?"); // Create an instance of MailMessageCollection class System::SharedPtrmanyMsg = System::MakeObject(); manyMsg->Add(message1); manyMsg->Add(message2); manyMsg->Add(message3); // Bulk send try { // Send Messages client->Send(manyMsg); } catch (System::Exception& ex) { System::Diagnostics::Trace::WriteLine(System::ObjectExt::ToString(ex)); }
MS Outlook使用传输中性封装格式(TNEF)发送具有RTF正文的电子邮件。在这种情况下,将从电子邮件中提取格式并将其编码为TNEF。在接收端,如果客户端支持TNEF,则它将汇编纯文本和TNEF附件以创建RTF电子邮件。否则,电子邮件将显示为纯文本。为了将电子邮件作为TNEF发送,您可以使用SmtpClient-> set_UseTnef(bool)方法。
下面的代码示例演示如何使用C ++将Outlook电子邮件作为TNEF发送。
try { // Email file path System::String emlFileName = u"Message.eml"; // A TNEF Email // Load from eml System::SharedPtreml1 = MailMessage::Load(emlFileName, System::MakeObject()); eml1->set_From(u"somename@gmail.com"); eml1->get_To()->Clear(); eml1->get_To()->Add(System::MakeObject(u"first.last@test.com")); eml1->set_Subject(u"With PreserveTnef flag during loading"); eml1->set_Date(System::DateTime::get_Now()); System::SharedPtrclient = System::MakeObject(u"smtp.gmail.com", 587, u"somename", u"password"); client->set_SecurityOptions(Aspose::Email::Clients::SecurityOptions::Auto); client->set_UseTnef(true); // Use this flag to send as TNEF client->Send(eml1); } catch (System::Exception& ex) { // catch exception }
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
在C ++应用程序中创建,编辑和转换电子邮件文件和存档,不需要Microsoft Outlook。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢