Review feedback: retries settings

This commit is contained in:
Neil Martinsen-Burrell 2023-02-14 15:11:05 -06:00
parent 459e753edd
commit 65fd8d3893
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
2 changed files with 6 additions and 1 deletions

View file

@ -29,6 +29,7 @@ def send_templated_email(template_name: str, to_address: str, context={}):
region_name=settings.AWS_REGION,
aws_access_key_id=settings.AWS_ACCESS_KEY_ID,
aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY,
config=settings.BOTO_CONFIG,
)
except Exception as exc:
raise EmailSendingError("Could not access the SES client.") from exc