outlook-exe

Crates.iooutlook-exe
lib.rsoutlook-exe
version0.1.0
sourcesrc
created_at2020-03-29 05:02:14.476339
updated_at2020-09-01 04:10:45.086712
descriptionConvenience wrappers for command-line invocation of Outlook.
homepagehttps://github.com/ryanavella/outlook-exe
repositoryhttps://github.com/ryanavella/outlook-exe
max_upload_size
id223978
size12,499
Ryan Avella (ryanavella)

documentation

https://docs.rs/outlook-exe

README

outlook-exe


Convenience wrappers for command-line invocation of Outlook.

License: MIT License: Unlicense crates.io docs.rs

Example

Basic usage:

use outlook_exe;

outlook_exe::MessageBuilder::new()
    .with_recipient("noreply@example.org")
    .with_subject("Hello, World!")
    .with_body("Line with spaces\nAnother line")
    .with_attachment("C:/tmp/file.txt")
    .spawn()
    .unwrap();
Commit count: 6

cargo fmt