彩票走势图

logo Aspose.Words使用教程
文档彩票走势图>>Aspose.Words使用教程>>Aspose.Words功能演示:使用C#在电子邮件正文中发送Word文档

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


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

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


使用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);

如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP