commit e2907f4250b41ffcb00135ecc6b96e3c58d21ff4
parent 680f5e83d802e69b5ee890fd9be42d745a0cd43c
Author: Nick Fox <nick@foxsec.net>
Date: Fri, 14 Dec 2018 21:54:03 -0500
Add invite email functionality
Diffstat:
1 file changed, 30 insertions(+), 0 deletions(-)
diff --git a/src/mail.rs b/src/mail.rs
@@ -5,6 +5,7 @@ use lettre::smtp::authentication::Credentials;
use lettre_email::EmailBuilder;
use crate::MailConfig;
+use crate::CONFIG;
fn mailer(config: &MailConfig) -> SmtpTransport {
let client_security = if config.smtp_ssl {
@@ -60,3 +61,31 @@ pub fn send_password_hint(address: &str, hint: Option<String>, config: &MailConf
.map_err(|e| e.to_string())
.and(Ok(()))
}
+
+pub fn send_invite(address: &str, org_id: &str, org_user_id: &str, token: &str, org_name: &str, config: &MailConfig) -> Result<(), String> {
+ let (subject, body) = {
+ (format!("Join {}", &org_name),
+ format!(
+ "<html>
+ <p>You have been invited to join the <b>{}</b> organization.<br><br>
+ <a href=\"https://{}/api/organizations/{}/users/{}/accept?token={}\">Click here to join</a></p>
+ <p>If you do not wish to join this organization, you can safely ignore this email.</p>
+ </html>",
+ org_name, CONFIG.domain, org_id, org_user_id, token
+ ))
+ };
+
+ let email = EmailBuilder::new()
+ .to(address)
+ .from((config.smtp_from.clone(), "Bitwarden-rs"))
+ .subject(subject)
+ .header(("Content-Type", "text/html"))
+ .body(body)
+ .build()
+ .map_err(|e| e.to_string())?;
+
+ mailer(config)
+ .send(email.into())
+ .map_err(|e| e.to_string())
+ .and(Ok(()))
+}
+\ No newline at end of file