彩票走势图

Word处理控件Aspose.Words功能演示:使用C#在电子邮件正文中发送Word文档

翻译|使用教程|编辑:李显亮|2021-02-18 10:37:23.850|阅读 249 次

概述:大多数内置的电子邮件编辑器不提供高级格式化选项。为了解决此限制,本文介绍如何使用Word文档作为C#中的电子邮件正文来撰写电子邮件。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

电子邮件正文的呈现是吸引读者的重要因素之一。因此,电子邮件使用标题,子标题,表格,图像等进行了很好的格式化。但是,大多数内置的电子邮件编辑器不提供高级格式化选项。为了解决此限制,本文介绍如何使用Word文档作为C#中的电子邮件正文来撰写电子邮件。

为了从Word文档中导入内容,将使用Aspose.Words for .NET API。而在撰写和发送电子邮件时,将利用Aspose.Email for .NET的功能。两个API均可点击名称进入下载。

整合所有格式的Aspose.Total永久授权火热促销中,立马1分钟了解全部咨询!

使用C#在电子邮件正文中发送Word文档

1、使用Aspose.Words.Document类加载Word文档,并将其另存为MHTML到MemoryStream对象中。

// Load a Word document from disk
Document wordDocument = new Document("Word.docx");

// Save document as MHTML into memory stream
MemoryStream mhtmlStream = new MemoryStream();
wordDocument.Save(mhtmlStream, SaveFormat.Mhtml);

2、装入MHTML从MemoryStream的对象到Aspose.Email.MailMessage对象和集受试者,至和从电子邮件的字段。

// Set position to 0
mhtmlStream.Position = 0;

// Create email message from MHTML
MailMessage message = MailMessage.Load(mhtmlStream, new MhtmlLoadOptions());

// Set email fields
message.Subject = "Sending Invoice in Email";
message.From = "sender@gmail.com";
message.To = "recipient@gmail.com";

3、使用Aspose.Email.Clients.Smtp.SmtpClient类设置SMTP客户端并发送电子邮件。

// Send email via SMTP
SmtpClient client = new SmtpClient("smtp.gmail.com", 587, "sender@gmail.com", "pwd");
client.SecurityOptions = SecurityOptions.SSLExplicit;                
client.Send(message);

以下是使用C#将MS Word文档作为电子邮件正文导入的完整源代码。

// Load a Word document from disk
Document wordDocument = new Document("Word.docx");

// Save document as MHTML into memory stream
MemoryStream mhtmlStream = new MemoryStream();
wordDocument.Save(mhtmlStream, SaveFormat.Mhtml);

// Set position to 0
mhtmlStream.Position = 0;

// Create email message from MHTML
MailMessage message = MailMessage.Load(mhtmlStream, new MhtmlLoadOptions());

// Set email fields
message.Subject = "Sending Invoice in Email";
message.From = "sender@gmail.com";
message.To = "recipient@gmail.com";

// Send email via SMTP
SmtpClient client = new SmtpClient("smtp.gmail.com", 587, "sender@gmail.com", "pwd");
client.SecurityOptions = SecurityOptions.SSLExplicit;                
client.Send(message);

还想要更多吗?您可以点击阅读【2020 · Aspose最新资源整合】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP