From 19e0605d30384e04b5bba4a3aa34d40619f61add Mon Sep 17 00:00:00 2001 From: Jean-Christophe BEGUE Date: Wed, 15 Aug 2018 10:17:05 +0200 Subject: [PATCH] Better message into the password hint email --- src/mail.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/mail.rs b/src/mail.rs index 7faa791f..0af83ce7 100644 --- a/src/mail.rs +++ b/src/mail.rs @@ -32,11 +32,17 @@ fn mailer(config: &MailConfig) -> SmtpTransport { } pub fn send_password_hint(address: &str, hint: &str, config: &MailConfig) -> Result<(), String> { + let body = format!( + "You (or someone) recently requested your master password hint.\n\n\ + Your hint is: \"{}\"\n\n\ + If you did not request your master password hint you can safely ignore this email.\n", + hint); + let email = EmailBuilder::new() .to(address) .from((config.smtp_from.to_owned(), "Bitwarden-rs")) .subject("Your Master Password Hint") - .body(hint) + .body(body) .build().unwrap(); match mailer(config).send(&email) {