style: skip returns

This commit is contained in:
Michał Mrozek 2022-11-24 14:24:44 +01:00
parent 45c24538e4
commit 9e25e00a69
No known key found for this signature in database
GPG Key ID: 91FD36F93B3386F0

View File

@ -54,15 +54,15 @@ To reset your password please visit the following URL: {}/reset-password/step2/{
Please contact an administrator if you did not initiate the process.",
username, domain, token
);
return send_email(to, "[LLDAP] Password reset requested", body, options).await;
send_email(to, "[LLDAP] Password reset requested", body, options).await
}
pub async fn send_test_email(to: Mailbox, options: &MailOptions) -> Result<()> {
return send_email(
send_email(
to,
"LLDAP test email",
"The test is successful! You can send emails from LLDAP".to_string(),
options,
)
.await;
.await
}