ews 1.2.0-nullsafety.6 copy "ews: ^1.2.0-nullsafety.6" to clipboard
ews: ^1.2.0-nullsafety.6 copied to clipboard

outdated

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 = WebCredentials(
    "---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
0
pub points
44%
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

License

unknown (LICENSE)

Dependencies

collection, intl, synchronized, timezone, xml

More

Packages that depend on ews