Convenience wrappers for command-line invocation of Outlook.
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(); ```