Merge pull request #2635 from jakedt/returntosender

Use MAIL_DEFAULT_SENDER as the sender in email notifications
This commit is contained in:
Jake Moshenko 2017-05-10 14:34:37 -04:00 committed by GitHub
commit b96b871c3a

View file

@ -159,13 +159,12 @@ class EmailMethod(NotificationMethod):
if not email:
return
with app.app_context():
msg = Message(event_handler.get_summary(notification_data['event_data'], notification_data),
sender='support@quay.io',
recipients=[email])
msg.html = event_handler.get_message(notification_data['event_data'], notification_data)
try:
with app.app_context():
mail.send(msg)
except Exception as ex:
logger.exception('Email was unable to be sent: %s' % ex.message)