This commit is contained in:
Nick Hurley 2013-05-06 13:55:10 -07:00
Родитель 9b81bdbfb4
Коммит a75c1b5d75
1 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -749,10 +749,13 @@ def sendmail(to, subject, message, *attachments):
msg.attach(mpart)
# And now we can actuall send the email
smtp = smtplib.SMTP('localhost')
smtp.sendmail('stoneridge@noreply.mozilla.com', [to],
msg.as_string())
smtp.close()
try:
smtp = smtplib.SMTP('localhost')
smtp.sendmail('stoneridge@noreply.mozilla.com', [to],
msg.as_string())
smtp.close()
except:
logging.exception('Error sending email to %s' % (to,))
_mailurl = None