added try except block for send_gmail_email method

This commit is contained in:
Ghighi Eftimie 2022-10-04 20:51:29 +03:00
parent 7eef44f73c
commit 397cd987cb
1 changed files with 1 additions and 0 deletions

View File

@ -164,6 +164,7 @@ class TaskEmail(CalibreTask):
self.send_standard_email(msg)
else:
self.send_gmail_email(msg)
self._handleSuccess()
except MemoryError as e:
log.error_or_exception(e, stacklevel=3)
self._handleError(u'MemoryError sending e-mail: {}'.format(str(e)))