msg_parser 0.1.0

Outlook Email Message (.msg) parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
use msg_parser::Outlook;

fn main() {
    // Create Outlook object
    let outlook = Outlook::from_path("data/test_email.msg").unwrap();

    // Flush as json string
    let _json_string = outlook.to_json();

    // println!("{:#?}", outlook);
}