"Internet Message Format" meticulously implemented for email construction and validation, as defined in RFC 5322 and other RFCs.
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("
println!("{}", email);
} ```
However, Internet email was originally limited to 7-bit ASCII, and this crate only handles that lower 7-bit ASCII layer. For most purposes, you'll probably want to create a MIME email. MIME supports full unicode character sets, attachments, and alternative parts (e.g. text and html). You can use the mime_multipart crate to help construct a MIME email, along with hyper which helps with header definitions.
```rust extern crate emailformat; extern crate mimemultipart; extern crate hyper;
use emailformat::Email; use mimemultipart::{Part, Node}; use hyper::header::{Headers, ContentType}; use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value};
fn main() {
let body = "Good to hear from you, Hans Müeller.\r\n\
I wish you the best.\r\n\
\r\n\
Your Friend,
黛安娜";
let part = Part {
headers: {
let mut h = Headers::new();
h.set(ContentType(Mime(TopLevel::Text, SubLevel::Plain,
vec![(Attr::Charset, Value::Utf8)])));
h
},
body: body.as_bytes().to_owned(),
};
let nodes: Vec<Node> = vec![ Node::Part(part) ];
let boundary = ::mime_multipart::generate_boundary();
let mut part_bytes: Vec<u8> = Vec::new();
::mime_multipart::write_multipart(&mut part_bytes, &boundary, &nodes).unwrap();
let mut email = Email::new(
"myself@mydomain.com", // "From:"
"Wed, 05 Jan 2015 15:13:05 +1300" // "Date:"
).unwrap();
email.set_sender("from_myself@mydomain.com").unwrap();
email.set_reply_to("My Mailer <no-reply@mydomain.com>").unwrap();
email.set_to("You <you@yourdomain.com>").unwrap();
email.set_cc("Our Friend <friend@frienddomain.com>").unwrap();
email.set_message_id("<id/20161128115731.29084.maelstrom@mydomain.com>").unwrap();
email.set_subject("Hello Friend").unwrap();
email.add_optional_field(("MIME-Version", "1.0")).unwrap();
email.add_optional_field(("Content-Type",
&*format!("multipart/alternative; boundary=\"{}\"",
unsafe { String::from_utf8_unchecked(boundary) } ))).unwrap();
email.set_body(&*part_bytes).unwrap();
println!("{}", email);
} ```
email
crate's SendableEmail
, and so it works with the lettre
crate (will be inefficient due to the way SendableEmail is defined).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.
Licensed under either of
at your option.
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.