fix template strings

This commit is contained in:
Ben Harris 2019-02-04 13:28:41 -05:00
parent 3b70a5ba4b
commit 3725b9049c
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()