ews 2.3.0 copy "ews: ^2.3.0" to clipboard
ews: ^2.3.0 copied to clipboard

A Dart client library to access Microsoft Exchange web services. The library works against Office 365 Exchange Online as well as on premises Exchange.

example/example.dart

import 'package:ews/ews.dart';

void main() async {
  final credentials = BasicCredentials(
    "---username---",
    "---password---",
    "---domain---",
  );
  final service = ExchangeService.withVersion(ExchangeVersion.Exchange2007_SP1)
    ..Url = Uri.parse("https://outlook.office365.com/ews/exchange.asmx")
    ..Credentials = credentials
    ..TraceFlags = [TraceFlags.EwsRequest, TraceFlags.EwsResponse]
    ..TraceEnabled = true;
  final folder = Folder(service)..DisplayName = "My Folder";
  await folder.SaveWithWellKnownFolderName(WellKnownFolderName.Notes);
}
13
likes
130
points
280
downloads

Publisher

verified publisherglynskyi.com

Weekly Downloads

A Dart client library to access Microsoft Exchange web services. The library works against Office 365 Exchange Online as well as on premises Exchange.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

async, collection, html_unescape, intl, synchronized, timezone, uuid, xml

More

Packages that depend on ews