Merge pull request #9 from benharri/fix-template-strings

fix template strings
This commit is contained in:
Drew DeVault 2019-02-05 02:47:15 +01:00 committed by GitHub
commit b667230570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ def send_new_donation(user, donation):
})))
message['Subject'] = "New donation on fosspay!"
message['From'] = _cfg("smtp-from")
message['To'] = f"{_cfg('your-name')} <_cfg('your-email')>"
message['To'] = f"{_cfg('your-name')} <{_cfg('your-email')}>"
message['Date'] = format_datetime(localtime())
smtp.sendmail(_cfg("smtp-from"), [ _cfg('your-email') ], message.as_string())
smtp.quit()
@ -124,7 +124,7 @@ def send_cancellation_notice(user, donation):
})))
message['Subject'] = "A monthly donation on fosspay has been cancelled"
message['From'] = _cfg("smtp-from")
message['To'] = f"{_cfg('your-name')} <_cfg('your-email')>"
message['To'] = f"{_cfg('your-name')} <{_cfg('your-email')}>"
message['Date'] = format_datetime(localtime())
smtp.sendmail(_cfg("smtp-from"), [ _cfg('your-email') ], message.as_string())
smtp.quit()