# outlook-exe

Convenience wrappers for command-line invocation of Outlook.

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

Example

Basic usage:

```rust use outlook_exe;

outlookexe::MessageBuilder::new() .withrecipient("noreply@example.org") .withsubject("Hello, World!") .withbody("Line with spaces\nAnother line") .with_attachment("C:/tmp/file.txt") .spawn() .unwrap(); ```