Aspose.Email
21.11.0
See the version list below for details.
dotnet add package Aspose.Email --version 21.11.0
NuGet\Install-Package Aspose.Email -Version 21.11.0
<PackageReference Include="Aspose.Email" Version="21.11.0" />
paket add Aspose.Email --version 21.11.0
#r "nuget: Aspose.Email, 21.11.0"
// Install Aspose.Email as a Cake Addin #addin nuget:?package=Aspose.Email&version=21.11.0 // Install Aspose.Email as a Cake Tool #tool nuget:?package=Aspose.Email&version=21.11.0
.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.
Supported Read & Write Email Formats
Microsoft® Outlook®: MSG, PST, OST, OFT
Email: EML, EMLX, MBOX
macOS® Outlook: OLM
iCal®: ICS
Virtual Card: VCF
Web: HTML, MHTML
Save As Email Formats
Microsoft® Outlook®: OLM
Platform Independence
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.
Create an Email Message & Save it in MSG Format using C# Code
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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net20 is compatible. net35 is compatible. net35-client is compatible. net40 is compatible. net40-client is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 3.5 Client
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.0 Client
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.0
- System.Security.Cryptography.Pkcs (>= 5.0.1)
- System.Text.Encoding.CodePages (>= 5.0.0)
-
net5.0
- System.Security.Cryptography.Pkcs (>= 5.0.1)
- System.Text.Encoding.CodePages (>= 5.0.0)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Aspose.Email:
Package | Downloads |
---|---|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications. |
|
TresTechnologies.App.Shared
Shared components for use with applications build for the Tres API, |
|
Weavy.Core
A class library containing core business logic, data access and utility methods required by Weavy. |
|
AutomationFramework_NetCore
AT Net Core Automation Framework |
|
AsposeHelpers
Aspose helpers |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Aspose.Email:
Repository | Stars |
---|---|
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
|
|
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
|
Version | Downloads | Last updated |
---|---|---|
24.10.0 | 5,962 | 10/31/2024 |
24.9.0 | 17,498 | 9/30/2024 |
24.8.0 | 25,839 | 8/30/2024 |
24.7.0 | 28,164 | 7/31/2024 |
24.6.0 | 34,624 | 6/30/2024 |
24.5.0 | 63,553 | 5/31/2024 |
24.4.0 | 46,886 | 4/30/2024 |
24.3.0 | 95,481 | 3/31/2024 |
24.2.0 | 39,375 | 2/29/2024 |
24.1.0 | 70,294 | 1/31/2024 |
23.12.0 | 103,193 | 12/30/2023 |
23.11.0 | 33,534 | 11/30/2023 |
23.10.0 | 56,191 | 10/31/2023 |
23.9.0 | 46,382 | 9/30/2023 |
23.8.0 | 36,427 | 8/31/2023 |
23.7.0 | 67,619 | 7/31/2023 |
23.6.0 | 43,583 | 6/30/2023 |
23.5.1 | 40,800 | 6/10/2023 |
23.5.0 | 24,872 | 5/31/2023 |
23.4.0 | 220,402 | 4/30/2023 |
23.3.0 | 59,072 | 3/31/2023 |
23.2.0 | 85,867 | 2/28/2023 |
23.1.0 | 75,341 | 1/31/2023 |
22.12.0 | 107,186 | 12/31/2022 |
22.11.0 | 60,079 | 11/30/2022 |
22.10.0 | 113,783 | 10/31/2022 |
22.9.0 | 91,892 | 9/30/2022 |
22.8.0 | 106,257 | 8/29/2022 |
22.7.0 | 60,938 | 7/30/2022 |
22.6.0 | 55,411 | 7/1/2022 |
22.5.0 | 82,005 | 5/30/2022 |
22.4.0 | 61,279 | 4/30/2022 |
22.3.0 | 66,104 | 3/31/2022 |
22.2.0 | 77,479 | 2/28/2022 |
22.1.0 | 91,681 | 1/31/2022 |
21.12.0 | 381,473 | 12/24/2021 |
21.11.0 | 31,651 | 11/26/2021 |
21.10.0 | 87,888 | 10/29/2021 |
21.9.0 | 84,211 | 9/30/2021 |
21.8.1 | 51,157 | 9/6/2021 |
21.8.0 | 28,322 | 8/31/2021 |
21.7.0 | 79,700 | 7/30/2021 |
21.6.0 | 75,724 | 6/29/2021 |
21.5.0 | 54,317 | 5/31/2021 |
21.4.0 | 74,142 | 4/30/2021 |
21.3.0 | 33,854 | 3/30/2021 |
21.2.0 | 39,832 | 2/26/2021 |
21.1.1 | 147,847 | 2/1/2021 |
21.1.0 | 17,253 | 1/28/2021 |
20.12.0 | 104,181 | 12/29/2020 |
20.11.0 | 55,491 | 11/24/2020 |
20.10.0 | 58,637 | 11/2/2020 |
20.9.1 | 19,823 | 10/1/2020 |
20.9.0 | 5,150 | 9/28/2020 |
20.8.0 | 41,555 | 8/29/2020 |
20.7.0 | 43,897 | 7/30/2020 |
20.6.0 | 125,532 | 6/29/2020 |
20.5.0 | 38,742 | 5/30/2020 |
20.4.0 | 41,534 | 4/30/2020 |
20.3.0 | 39,840 | 3/31/2020 |
20.2.0 | 76,388 | 2/27/2020 |
20.1.0 | 23,110 | 1/30/2020 |
19.12.0 | 39,312 | 12/27/2019 |
19.11.0 | 220,719 | 11/29/2019 |
19.10.0 | 15,650 | 10/30/2019 |
19.9.0 | 62,789 | 9/28/2019 |
19.8.0 | 34,583 | 8/28/2019 |
19.7.0 | 14,651 | 7/30/2019 |
19.6.0 | 17,697 | 6/29/2019 |
19.5.0 | 43,319 | 6/1/2019 |
19.4.0 | 9,593 | 4/26/2019 |
19.3.0 | 11,467 | 3/29/2019 |
19.2.0 | 18,889 | 2/27/2019 |
19.1.1 | 8,529 | 2/4/2019 |
19.1.0 | 5,879 | 1/31/2019 |
18.12.0 | 22,291 | 12/25/2018 |
18.11.0 | 52,513 | 11/29/2018 |
18.10.0 | 11,109 | 10/24/2018 |
18.9.0 | 8,701 | 9/27/2018 |
18.8.0 | 11,322 | 8/27/2018 |
18.7.0 | 15,272 | 7/27/2018 |
18.6.0 | 18,270 | 6/27/2018 |
18.5.1 | 12,224 | 5/25/2018 |
18.4.0 | 9,758 | 4/26/2018 |
18.3.0 | 17,544 | 3/24/2018 |
18.2.0 | 21,232 | 2/21/2018 |
18.1.0 | 14,071 | 1/18/2018 |
17.12.0 | 44,851 | 12/18/2017 |
17.11.0 | 96,389 | 11/14/2017 |
17.10.0 | 22,311 | 10/9/2017 |
17.9.0 | 10,142 | 9/11/2017 |
17.8.0 | 33,979 | 8/8/2017 |
17.7.0 | 10,235 | 7/7/2017 |
17.6.0 | 17,425 | 6/8/2017 |
17.5.0 | 13,080 | 5/9/2017 |
17.4.0 | 55,118 | 4/7/2017 |
17.3.0 | 32,331 | 3/23/2017 |
17.2.0 | 18,515 | 2/16/2017 |
17.1.0 | 21,535 | 1/17/2017 |
16.12.0 | 314,891 | 12/19/2016 |
16.11.0 | 4,274 | 11/10/2016 |
16.10.0 | 18,788 | 10/10/2016 |
6.9.0 | 9,877 | 9/9/2016 |
6.8.0 | 23,852 | 8/10/2016 |
6.7.0 | 46,045 | 7/8/2016 |
6.6.0 | 10,347 | 6/4/2016 |
6.5.0 | 4,568 | 5/6/2016 |
6.4.0 | 21,945 | 4/11/2016 |
6.3.0 | 8,197 | 3/7/2016 |
6.2.0 | 85,111 | 2/5/2016 |
6.1.0 | 8,262 | 12/31/2015 |
6.0.0 | 5,632 | 12/7/2015 |
5.9.1 | 3,864 | 11/26/2015 |
5.9.0 | 15,877 | 11/5/2015 |
5.8.0 | 41,114 | 10/7/2015 |
5.7.0 | 5,394 | 9/8/2015 |
5.6.0 | 24,069 | 8/8/2015 |
5.5.0 | 14,882 | 7/9/2015 |
5.4.0 | 4,552 | 6/9/2015 |
5.3.0 | 6,430 | 5/5/2015 |
5.2.0 | 4,133 | 4/6/2015 |
5.1.0 | 3,473 | 3/10/2015 |
5.0.0 | 6,095 | 2/9/2015 |
4.9.0 | 5,976 | 1/4/2015 |
4.8.0 | 6,189 | 12/4/2014 |
4.7.0 | 4,259 | 11/3/2014 |
4.6.0 | 3,213 | 10/6/2014 |
4.5.0 | 6,169 | 9/4/2014 |
4.4.0 | 39,974 | 7/30/2014 |
4.3.0 | 6,938 | 7/2/2014 |
4.2.0 | 3,209 | 6/2/2014 |
4.1.0 | 3,499 | 5/2/2014 |
4.0.0 | 7,557 | 3/28/2014 |
3.9.0 | 5,080 | 3/2/2014 |
3.8.0 | 7,883 | 1/28/2014 |
3.7.0 | 23,896 | 12/30/2013 |
3.6.0 | 5,975 | 11/27/2013 |
3.5.0 | 3,419 | 11/1/2013 |
3.4.0 | 3,326 | 10/1/2013 |
3.3.0 | 3,411 | 8/26/2013 |
3.2.0 | 3,137 | 7/29/2013 |
3.1.0 | 3,423 | 6/27/2013 |
3.0.0 | 4,671 | 5/29/2013 |
2.9.0 | 3,854 | 4/29/2013 |
2.8.0 | 6,081 | 3/26/2013 |
2.7.0 | 4,457 | 2/27/2013 |
2.6.0 | 3,300 | 1/28/2013 |
2.5.0 | 3,306 | 12/26/2012 |
2.4.0 | 3,229 | 11/27/2012 |
2.3.0 | 5,622 | 10/30/2012 |
2.2.0 | 3,370 | 9/27/2012 |
2.1.0 | 6,934 | 8/29/2012 |
2.0.0 | 3,279 | 7/30/2012 |
1.9.0 | 3,386 | 6/28/2012 |
1.8.0 | 3,187 | 5/27/2012 |
1.7.1 | 4,817 | 5/9/2012 |
1.7.0 | 2,990 | 4/29/2012 |
1.6.0 | 3,043 | 3/26/2012 |
1.5.0 | 3,119 | 2/24/2012 |
1.4.0.1 | 3,112 | 2/16/2012 |
1.4.0 | 3,620 | 2/2/2012 |
1.3.0 | 5,179 | 1/24/2012 |