2019-03-19 14:37:56 +01:00
|
|
|
#![warn(clippy::too_many_arguments)]
|
2019-02-27 13:29:26 +01:00
|
|
|
use lettre_email::Email;
|
|
|
|
use std::env;
|
|
|
|
|
|
|
|
pub use self::mailer::*;
|
|
|
|
|
|
|
|
#[cfg(feature = "debug-mailer")]
|
|
|
|
mod mailer {
|
2019-03-20 17:56:17 +01:00
|
|
|
use lettre::{SendableEmail, Transport};
|
|
|
|
use std::io::Read;
|
2019-02-27 13:29:26 +01:00
|
|
|
|
|
|
|
pub struct DebugTransport;
|
|
|
|
|
|
|
|
impl<'a> Transport<'a> for DebugTransport {
|
|
|
|
type Result = Result<(), ()>;
|
|
|
|
|
|
|
|
fn send(&mut self, email: SendableEmail) -> Self::Result {
|
|
|
|
println!(
|
|
|
|
"{}: from=<{}> to=<{:?}>\n{:#?}",
|
|
|
|
email.message_id().to_string(),
|
2019-03-20 17:56:17 +01:00
|
|
|
email
|
|
|
|
.envelope()
|
|
|
|
.from()
|
|
|
|
.map(ToString::to_string)
|
|
|
|
.unwrap_or_default(),
|
2019-02-27 13:29:26 +01:00
|
|
|
email.envelope().to().to_vec(),
|
|
|
|
{
|
|
|
|
let mut message = String::new();
|
2019-03-20 17:56:17 +01:00
|
|
|
email
|
|
|
|
.message()
|
|
|
|
.read_to_string(&mut message)
|
|
|
|
.map_err(|_| ())?;
|
2019-02-27 13:29:26 +01:00
|
|
|
message
|
|
|
|
},
|
|
|
|
);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type Mailer = Option<DebugTransport>;
|
|
|
|
|
|
|
|
pub fn init() -> Mailer {
|
|
|
|
Some(DebugTransport)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "debug-mailer"))]
|
|
|
|
mod mailer {
|
|
|
|
use lettre::{
|
|
|
|
smtp::{
|
|
|
|
authentication::{Credentials, Mechanism},
|
|
|
|
extension::ClientId,
|
|
|
|
ConnectionReuseParameters,
|
|
|
|
},
|
2019-03-20 17:56:17 +01:00
|
|
|
SmtpClient, SmtpTransport,
|
2019-02-27 13:29:26 +01:00
|
|
|
};
|
|
|
|
use std::env;
|
|
|
|
|
|
|
|
pub type Mailer = Option<SmtpTransport>;
|
|
|
|
|
|
|
|
pub fn init() -> Mailer {
|
|
|
|
let server = env::var("MAIL_SERVER").ok()?;
|
|
|
|
let helo_name = env::var("MAIL_HELO_NAME").unwrap_or_else(|_| "localhost".to_owned());
|
|
|
|
let username = env::var("MAIL_USER").ok()?;
|
|
|
|
let password = env::var("MAIL_PASSWORD").ok()?;
|
2019-03-20 17:56:17 +01:00
|
|
|
let mail = SmtpClient::new_simple(&server)
|
|
|
|
.unwrap()
|
2019-02-27 13:29:26 +01:00
|
|
|
.hello_name(ClientId::Domain(helo_name))
|
|
|
|
.credentials(Credentials::new(username, password))
|
|
|
|
.smtp_utf8(true)
|
|
|
|
.authentication_mechanism(Mechanism::Plain)
|
|
|
|
.connection_reuse(ConnectionReuseParameters::NoReuse)
|
|
|
|
.transport();
|
|
|
|
Some(mail)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn build_mail(dest: String, subject: String, body: String) -> Option<Email> {
|
|
|
|
Email::builder()
|
2019-03-20 17:56:17 +01:00
|
|
|
.from(
|
|
|
|
env::var("MAIL_ADDRESS")
|
|
|
|
.or_else(|_| {
|
|
|
|
Ok(format!(
|
|
|
|
"{}@{}",
|
|
|
|
env::var("MAIL_USER")?,
|
|
|
|
env::var("MAIL_SERVER")?
|
|
|
|
)) as Result<_, env::VarError>
|
|
|
|
})
|
|
|
|
.expect("Mail server is not correctly configured"),
|
|
|
|
)
|
2019-02-27 13:29:26 +01:00
|
|
|
.to(dest)
|
|
|
|
.subject(subject)
|
|
|
|
.text(body)
|
|
|
|
.build()
|
|
|
|
.ok()
|
|
|
|
}
|