Skip to content

Commit

Permalink
Typo: fixing old style notification
Browse files Browse the repository at this point in the history
  • Loading branch information
jaesivsm committed Jun 18, 2024
1 parent 6b6f07a commit c0a77a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarr/lib/emails.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def send(to="", bcc="", subject="", plaintext=""):
# Create message container - the correct MIME type is multipart/alternative
msg = MIMEMultipart('alternative')
msg['Subject'] = subject
msg['From'] = conf.NOTIFICATION_EMAIL
msg['From'] = conf.notification.email
msg['Date'] = rfc_1123_utc()
msg['To'] = to
msg.attach(MIMEText(plaintext, 'plain', 'utf-8'))
Expand Down

0 comments on commit c0a77a7

Please sign in to comment.