Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 891 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 891 Bytes

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("[email protected]")
    .with_subject("Hello, World!")
    .with_body("Line with spaces\nAnother line")
    .with_attachment("C:/tmp/file.txt")
    .spawn()
    .unwrap();