Compare commits

..

No commits in common. "7c7163f54173bcea2e300006930ac71a3774ee0e" and "83c7b4513961919e52e4f6e748a4eb0c69ad3b94" have entirely different histories.

View File

@ -128,20 +128,10 @@ Der Vorstand
.parse()
.unwrap());
let splitted = send_to.split(',');
let send_mail = false;
for single_rec in splitted {
match single_rec.parse() {
Ok(val) => {
email = email.bcc(val);
send_mail = true;
}
Err(_) => {
println!("Error in mail: {single_rec}");
}
}
email = email.bcc(single_rec.parse().unwrap());
}
if send_mail {
let email = email
.subject("ASKÖ Ruderverein Donau Linz | Vereinsgebühren")
.header(ContentType::TEXT_PLAIN)
@ -162,5 +152,4 @@ Der Vorstand
}
}
}
}
}