Remove extraneous TODOs except for 1

This commit is contained in:
Rebecca Hsieh 2024-03-13 08:48:25 -07:00
parent 7e6cf54781
commit f0b510f09d
No known key found for this signature in database
2 changed files with 2 additions and 7 deletions

View file

@ -75,12 +75,9 @@ def send_templated_email(
aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY,
config=settings.BOTO_CONFIG,
)
response = send_email_with_attachment(
send_email_with_attachment(
settings.DEFAULT_FROM_EMAIL, to_address, subject, email_body, attachment_file, ses_client
)
# TODO: Remove this print statement when ready to merge,
# leaving rn for getting error codes in case
print("Response from send_email_with_attachment_is:", response)
except Exception as exc:
raise EmailSendingError("Could not send SES email.") from exc