Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Email for .NET 24.3 (Dlls only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 46.7MB
  • Date Added:
  • 31/3/2024

Description

It contains Aspose.Email for .NET 24.3 (Dlls-only) release.

File Details

Upgraded Microsoft Graph Integration

Aspose.Email for .NET 24.3 enables managing contacts and calendar data seamlessly with the new API additions to access, create, update, and list contacts and calendar items.

This C# code example demonstrates how you can manage contacts in your email processing apps:

// List Contacts
MapiContactCollection contacts = graphClient.ListContacts("contactFolderId");

// Fetch Contact
MapiContact contact = graphClient.FetchContact("contactId");

// Create Contact
MapiContact newContact = new MapiContact("Jane Smith", "jane.smith@example.com", "XYZ Corporation", "777-888-999");

MapiContact createdContact = graphClient.CreateContact("contactFolderId", newContact);

// Update Contact
createdContact.Telephones.PrimaryTelephoneNumber = "888-888-999";

MapiContact updatedContact = graphClient.UpdateContact(createdContact);

Source*

And the following code snippet illustrates how to manage calender items within your C# emailing solutions:


// List Calendars
CalendarInfoCollection calendars = graphClient.ListCalendars();

// List Calendar Items
MapiCalendarCollection calendarItems = graphClient.ListCalendarItems("calendarId");

// Fetch Calendar Item
MapiCalendar calendarItem = graphClient.FetchCalendarItem("calendarItemId");

// Create Calendar Item
MapiCalendar newCalendarItem = new MapiCalendar(
    location: "Conference Room",
    summary: "Team Meeting",
    description: "Discuss project status and updates.",
    startDate: startDate,
    endDate: endDate
);

MapiCalendar createdCalendarItem = graphClient.CreateCalendarItem("calendarId", newCalendarItem);

// Update Calendar Item
createdCalendarItem.Location = "Zoom Meeting";
MapiCalendar updatedCalendarItem = graphClient.UpdateCalendarItem(createdCalendarItem);

Source*

Other Highlights

  • Added a fix for the MailMessage.Load hanging issue (EMAILNET-41303).
  • Improved validation of EMLX files by MessageValidator (EMAILNET-41299).
  • The unexpected WeekDay conversion errors are fixed (EMAILNET-41301).
  • The null TimeZone value problem during appointment loading has been addressed (EMAILNET-41309).
  • The ArgumentNullException while opening VCF files is resolved (EMAILNET-41304).
  • This release ensures BYSETPOS rule compatibility with other BYxxx rules (EMAILNET-41300).

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Email for .NET 24.3 Release Notes.

 English