Made mail subjects work properly.

This commit is contained in:
Thelie 2021-05-23 22:44:24 +02:00
parent af769100e7
commit 2c26ab95de

View file

@ -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
);