fix: ehlo localhost now confiugred

This commit is contained in:
Jet 2026-03-18 18:34:32 -07:00
parent add50dc7af
commit 78ac87a421
No known key found for this signature in database

View file

@ -26,6 +26,7 @@ pub fn send_notification(
let mailer = SmtpTransport::builder_dangerous("localhost")
.tls(Tls::None)
.hello_name(lettre::transport::smtp::extension::ClientId::Domain("extremist.software".to_string()))
.build();
mailer.send(&email)?;