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);
}
12
likes
110
pub points
42%
popularity

Publisher

verified publisherglynskyi.com

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)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

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

More

Packages that depend on ews