email-format

"Internet Message Format" meticulously implemented for email construction and validation, as defined in RFC 5322 and other RFCs.

Documentation

You can compose an email like this:

```rust extern crate email_format;

use email_format::Email;

fn main() { let mut email = Email::new( "myself@mydomain.com", // "From:" "Wed, 05 Jan 2015 15:13:05 +1300" // "Date:" ).unwrap(); email.setsender("frommyself@mydomain.com").unwrap(); email.setreplyto("My Mailer no-reply@mydomain.com").unwrap(); email.setto("You you@yourdomain.com").unwrap(); email.setcc("Our Friend friend@frienddomain.com").unwrap(); email.setmessageid("").unwrap(); email.setsubject("Hello Friend").unwrap(); email.setbody("Good to hear from you.\r\n\ I wish you the best.\r\n\ \r\n\ Your Friend").unwrap();

println!("{}", email);

} ```

Features

Limitations

Plans (not yet implemented)

History

This project was inspired by the earlier email crate, but was reworked from scratch due to a number of significant differences in design, implementation and interface.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.