Made mail subjects work properly.
This commit is contained in:
parent
af769100e7
commit
2c26ab95de
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue