diff --git a/src/main.rs b/src/main.rs index 6f7ce39..729b0d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -85,8 +85,9 @@ fn main() { match rx.recv() { Ok(data) => { println!("Sending mail to: {}", data[0]); - let title = format!("You were mentioned in {} on {}", data[2], data[1]); - let body = format!("{} wrote: {}", data[3], data[4]).into_bytes(); + let id = "notarealiid@mention2mail".to_owned(); + let body = format!("Subject: You were mentioned in {} on {}\n{} wrote: {}", + data[2], data[1], data[3], data[4]).into_bytes(); let mail = lettre::SendableEmail::new( lettre::Envelope::new( Some( @@ -96,7 +97,7 @@ fn main() { vec![ lettre::EmailAddress::new(data[0].clone()).unwrap()] ).unwrap(), - title, + id, body );