GemBox.Email.Examples icon indicating copy to clipboard operation
GemBox.Email.Examples copied to clipboard

GemBox.Email is a .NET component that enables you to read, write, and convert email files (MSG, EML, and MHTML), or send and receive email messages (POP, IMAP, SMTP, and EWS) from .NET applications in...

NuGet version NuGet downloads Visual Studio Marketplace rating

What is GemBox.Email?

GemBox.Email is a .NET component that enables you to read, write, and convert email files (MSG, EML, and MHTML), or send and receive email messages (POP, IMAP, SMTP, and EWS) from .NET applications.

With GemBox.Email you get a fast and reliable component that's easy to use and doesn't depend on Microsoft Outlook. It requires only .NET so you can deploy your applications without having to think about other licenses.

GemBox.Email Features

Get Started

You are not sure how to start working with email messages in .NET using GemBox.Email? Check the code below that shows how to create an email message from scratch and send it.

// If using Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY");
 
// Create a new email message.
MailMessage message = new MailMessage(
    new MailAddress("[email protected]", "Sender"),
    new MailAddress("[email protected]", "First receiver"),
    new MailAddress("[email protected]", "Second receiver"));

// Add subject and body.
message.Subject = "Hello World!";
message.BodyText = "Hi 👋,\n" +
    "This message was created and sent with GemBox.Email.";

// Create a new SMTP client and send the email message.
using (SmtpClient smtp = new SmtpClient("<ADDRESS> (e.g. smtp.gmail.com)"))
{
    smtp.Connect();
    smtp.Authenticate("<USERNAME>", "<PASSWORD>");
    smtp.SendMessage(message);
}

For more GemBox.Email code examples and demos, please visit our examples page.

Installation

You can download GemBox.Email from NuGet 📦 or from BugFixes 🛠️.

Resources