mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
Adding correct hello_name to mail.
This commit is contained in:
parent
fc86b83e36
commit
10c6505968
1 changed files with 3 additions and 1 deletions
|
@ -105,7 +105,7 @@ pub fn send_email(
|
|||
|
||||
let mut mailer = SmtpClient::new_simple(&email_config.smtp_server)
|
||||
.unwrap()
|
||||
.hello_name(ClientId::Domain("localhost".to_string()))
|
||||
.hello_name(ClientId::Domain(Settings::get().hostname.to_owned()))
|
||||
.credentials(Credentials::new(
|
||||
email_config.smtp_login.to_owned(),
|
||||
email_config.smtp_password.to_owned(),
|
||||
|
@ -117,6 +117,8 @@ pub fn send_email(
|
|||
|
||||
let result = mailer.send(email.into());
|
||||
|
||||
mailer.close();
|
||||
|
||||
match result {
|
||||
Ok(_) => Ok(()),
|
||||
Err(_) => Err("no_email_setup".to_string()),
|
||||
|
|
Loading…
Reference in a new issue