Crates.io | outlook-exe |
lib.rs | outlook-exe |
version | 0.1.0 |
source | src |
created_at | 2020-03-29 05:02:14.476339 |
updated_at | 2020-09-01 04:10:45.086712 |
description | Convenience wrappers for command-line invocation of Outlook. |
homepage | https://github.com/ryanavella/outlook-exe |
repository | https://github.com/ryanavella/outlook-exe |
max_upload_size | |
id | 223978 |
size | 12,499 |
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();