ews

Last updated:

0 purchases

ews Image
ews Images
Add to Cart

Description:

ews

EWS #




This project is a Dart client library to access Microsoft Exchange web services. The library works against Office 365 Exchange Online as well as on premises Exchange.
By using it you can access almost all the information stored in an Office 365, Exchange Online, or Exchange Server mailbox.
However, this API is in sustaining mode, the recommended access pattern for Office 365 and Exchange online data is Microsoft Graph
Getting started #
In the library the ExchangeService class contains the methods and properties that are used to set user credentials, identify the Exchange Web Services endpoint, send and receive SOAP messages, and configure the connection with Exchange Web Services.
To perform an operation by using the library, you must set up the ExchangeService class.
final service = ExchangeService.withVersion(ExchangeVersion.Exchange2007_SP1)
..Url = Uri.parse("https://outlook.office365.com/ews/exchange.asmx")
..Credentials = WebCredentials("---USER_NAME---", "---USER_PASSWORD---", "---USER_DOMAIN---");
copied to clipboard
Creating folders #
The following code example shows how to create a folder with a custom folder class.
final folder = new Folder(service)
..DisplayName = "Custom Folder"
..FolderClass = "IPF.MyCustomFolderClass";
await folder.SaveWithWellKnownFolderName(WellKnownFolderName.Notes);
copied to clipboard
Creating custom extended properties #
The following code example shows how to create a new extended property, set a value for the extended property, and add it to a message.
// Create a definition for the extended property.
final extendedPropertyDefinition = ExtendedPropertyDefinition.withDefaultPropertySetAndName(DefaultExtendedPropertySet.Common, "custom:MeetingDescription", MapiPropertyType.String);

// Create an e-mail message that you will add the extended property to.
final message = new EmailMessage(service)
..Subject = "Saved with the meeting description"
..Body = MessageBody.withText("The meeting description is contained within the extended property.")
..ToRecipients.Add(EmailAddress(smtpAddress: "[email protected]"))
..SetExtendedProperty(extendedPropertyDefinition, "The meeting purpose is make the right decision");

// Save the e-mail message.
await message.SendAndSaveCopy();
copied to clipboard
Creating an appointment #
The following code shows how to create an appointment and set a subject, a body, a start time, and an end time to one.
final startTime = new DateTime(2019, 9, 9, 9, 10, 0);
final appointment = new Appointment(service)
..Subject = "Dentist Appointment"
..Body = MessageBody.withText("The appointment is with Dr. Smith.")
..Start = startTime
..End = startTime.add(Duration(hours: 2));

await appointment.SaveWithSendInvitationsMode(SendInvitationsMode.SendToNone);
copied to clipboard
Support statement #
Starting July 19th 2018, Exchange Web Services (EWS) will no longer receive feature updates. While the service will continue to receive security updates and certain non-security updates, product design and features will remain unchanged. This change also applies to the EWS SDKs for Java and .NET. More information here: https://developer.microsoft.com/en-us/graph/blogs/upcoming-changes-to-exchange-web-services-ews-api-for-office-365/
Additional resources #
See the following articles to help you get started:

Get started with EWS Managed API client applications
How to: Reference the EWS Managed API assembly
How to: Set the EWS service URL by using the EWS Managed API
How to: Communicate with EWS by using the EWS Managed API
How to: Trace requests and responses to troubleshoot EWS Managed API applications

Documentation #
Documentation for the EWS Managed API is available in the Web services node of the MSDN Library.
In addition to the getting started links provided, you can find how to topics and code samples for the most frequently used EWS Managed API objects in the Develop node. All the latest information about the EWS Managed API, EWS, and related web services can be found under the Explore the EWS Managed API, EWS, and web services in Exchange topic on MSDN.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.