Version 0.2.0 #2

Merged
Thelie merged 15 commits from garbage into main 2021-05-23 22:47:43 +02:00
Showing only changes of commit 2c26ab95de - Show all commits

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