.NET Email API
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.Email for .NET allows you to work with MIME messages, appointments, Microsoft Outlook® items, Outlook storage files, various clients & protocols SMTP, POP3, IMAP, Exchange EWS, Exchange WebDav, Gmail, Thunderbird, Zimbra, IBM Notes & AMP HTML emails and more.
Email API Features
- Open or save emails in Microsoft® Outlook® & other formats.
- Conversion of email files to various formats.
- Parse, read & save Microsoft® Outlook® emails, PST & OST files.
- Comprehensive support for MIME messages.
- Send & receive emails via POP3, IMAP, Microsoft® Exchange Server.
- Send emails in bulk while performing mail merge via various types of data sources.
- Send iCalendar compliant messages.
- Consume and produce recurrence patterns in the iCalendar (RFC 2445) format.
- Tools to verify email addresses, email syntax, email domain, mail server & MX records.
- Extract objects from various mail storage formats as well as create email storage files from scratch.
Microsoft® Outlook®: MSG, PST, OST, OFT
Email: EML, EMLX, MBOX
macOS® Outlook: OLM
iCal®: ICS
Virtual Card: VCF
Web: HTML, MHTML
Microsoft® Outlook®: OLM
Aspose.Email for .NET is implemented using Managed C# and can be used with any .NET based languages including C#, VB.NET, J#, and so on. Aspose.Email for .NET can be integrated with any kind of application on Windows, Linux, Mac OS X, and Xamarin Platforms.
Get Started
Are you ready to give Aspose.Email for .NET a try? Simply execute Install-Package Aspose.Email
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Email for .NET and want to upgrade the version, please execute Update-Package Aspose.Email
to get the latest version.
You can execute the below code snippet to see how Aspose.Email API performs in your environment or check the GitHub Repository for other common usage scenarios.
// create an instance of the MailMessage class
var message = new MailMessage();
// set from, to, subject and body properties
message.From = "sender@domain.com";
message.To = "receiver@domain.com";
message.Subject = "This is test message";
mamessageilMsg.Body = "This is test body";
// create an instance of the MapiMessage class and pass object of MailMessage as argument
var msg = MapiMessage.FromMailMessage(message);
// save file on disc
msg.Save(dir + "output.msg");
Send Bulk Emails via SMTP
// create SmtpClient as client and specify server, port, user name and password
SmtpClient client = new SmtpClient("mail.server.com", 25, "Username", "Password");
// create instances of MailMessage class and Specify To, From, Subject, and Message
MailMessage message1 = new MailMessage("msg1@from.com", "msg1@to.com", "Subject1", "message1, how are you?");
MailMessage message2 = new MailMessage("msg1@from.com", "msg2@to.com", "Subject2", "message2, how are you?");
MailMessage message3 = new MailMessage("msg1@from.com", "msg3@to.com", "Subject3", "message3, how are you?");
// create an instance of MailMessageCollection class
MailMessageCollection manyMsg = new MailMessageCollection();
manyMsg.Add(message1);
manyMsg.Add(message2);
manyMsg.Add(message3);
// send emails in bulk
client.Send(manyMsg);
Use C# to Create an ICS Appointment
// create and initialize an instance of the Appointment class
var appointment = new Appointment(
"Meeting Room 3 at Office Headquarters", // Location
"Monthly Meeting", // Summary
"Please confirm your availability.", // Description
new DateTime(2015, 2, 8, 13, 0, 0), // Start date
new DateTime(2015, 2, 8, 14, 0, 0), // End date
"from@domain.com", // Organizer
"attendees@domain.com"); // Attendees
// save the appointment to disk in ICS format
appointment.Save("output.ics", AppointmentSaveFormat.Ics);
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License