Browse our Products Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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);
MailMessage.Load
MessageValidator
WeekDay
TimeZone
ArgumentNullException
BYSETPOS
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.