outlook-exe
Convenience wrappers for command-line invocation of Outlook.
Example
Basic usage:
use outlook_exe;
new
.with_recipient
.with_subject
.with_body
.with_attachment
.spawn
.unwrap;
Convenience wrappers for command-line invocation of Outlook.
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();