In this easy tutorial, we will learn how to send Word Document by email using C#. In the following example, you will see how easy it is to send Word Document in email body using C#. You may use the example in any of the commonly available operating system like Linux, macOS, or Windows.
Steps to Send Word Document by Email using C#
- Install Aspose.Words and Aspose.Email libraries from NuGet package manager tool in Visual Studio.
- Initialize Document class object to load the document to send as email
- Save the document as stream to an intermediate MHTML format
- Instantiate MailMessage class instance to load the MHTML as MailMessage and set its properties
- Instantiate SMTP client and send the Word document as email using C#
In above steps, we will load the Word document for sending as email in first step. Then we will save the loaded document to a stream in intermediate MHTML format. In subsequent steps, we will load the MHTML using MailMessage class and set it’s mail properties. Finally, an instance of SMTP client class will be instantiated to create email from DOCX in C#.
Code to Send Word Document by Email using C#
using System; | |
using System.IO; | |
using Aspose.Email; | |
using Aspose.Email.Clients; | |
using Aspose.Email.Clients.Smtp; | |
using Aspose.Words; | |
namespace WordKB | |
{ | |
class WordsEmail | |
{ | |
static void Main(string[] args) | |
{ | |
// Use Aspose.Words and Aspose.Email licenses to remove evaluation version limitations | |
Aspose.Words.License LicenseForWord = new Aspose.Words.License(); | |
LicenseForWord.SetLicense("Aspose.Total.API.lic"); | |
Aspose.Email.License LicenseForEmail = new Aspose.Email.License(); | |
LicenseForEmail.SetLicense("Aspose.Total.API.lic"); | |
// Load the document for sending as email using Document class | |
Document EmaiDocument = new Document("EmailDocument.docx"); | |
// Convert the document to MHTML format by using memory stream | |
Stream EmailStream = new MemoryStream(); | |
EmaiDocument.Save(EmailStream, SaveFormat.Mhtml); | |
// Now, reset the EmailStream position to the beginning | |
EmailStream.Position = 0; | |
// Create an Aspose.Email message from the saved stream | |
Aspose.Email.MailMessage EmailMessage = | |
Aspose.Email.MailMessage.Load(EmailStream, new MhtmlLoadOptions()); | |
// Set properties of email to send | |
EmailMessage.From = "your_from_email@email.com"; | |
EmailMessage.To = "your_to_email@email.com"; | |
EmailMessage.Subject = "Test Message using Aspose. Words and Aspose.Email APIs"; | |
// Initialize SMTP client and it's properties to send email | |
SmtpClient SMTPClient = new SmtpClient(); | |
SMTPClient.Host = "smtp.gmail.com"; | |
SMTPClient.Username = "YourEmail@gmail.com"; | |
SMTPClient.Password = "Your Gamil Password"; | |
SMTPClient.Port = 587; | |
SMTPClient.SecurityOptions = SecurityOptions.SSLExplicit; | |
// Send word email message | |
SMTPClient.Send(EmailMessage); | |
} | |
} | |
} |
In above example, we have send Word Document in email body using C# by adopting two steps approach. In first step, we have loaded and saved the DOCX as an intermediate format MHTML file using streams. Then in second step, we have loaded the MHTML in stream using MailMessage. Finally, by using SMTP client, we send Document by email in C#.
In this simple topic, we have explored how to create email from DOCX using C#. However, if you are looking for conversion of DOCX to MD file, refer to the article on how to convert Word to Markdown using C#.