๐Ÿ“ฆ ryanavella / outlook-exe

Convenience wrappers for command-line invocation of Outlook.

โ˜… 5 stars โ‘‚ 3 forks ๐Ÿ‘ 5 watching โš–๏ธ The Unlicense
emailoutlook
๐Ÿ“ฅ Clone https://github.com/ryanavella/outlook-exe.git
HTTPS git clone https://github.com/ryanavella/outlook-exe.git
SSH git clone git@github.com:ryanavella/outlook-exe.git
CLI gh repo clone ryanavella/outlook-exe
Ryan Avella Ryan Avella Merge pull request #3 from cdhf/master 62fdf58 2 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ src
๐Ÿ“„ .gitignore
๐Ÿ“„ Cargo.toml
๐Ÿ“„ LICENSE-MIT
๐Ÿ“„ README.md
๐Ÿ“„ UNLICENSE
๐Ÿ“„ README.md

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