I have a Django website that was working for years on Opalstack without issues. I have a contact us form on the website that allows people to send me a message. As far as I can tell, everything is configured correctly (e.g., Django's, EmailMessage.send
works correctly and does not return an error). However, around the beginning of July (exact date is unclear since we rarely get messages via the contact us form), this seems to have stopped working. Although the EmailMessage.send
appears to send the message properly, we no longer are receiving the emails at the designated address.
I have not touched the code in a couple of months, so whatever changed to break the email functionality is likely server-side. I do not think it is the SMTP authentication since EmailMessage.send
would return a SMTPAuthenticationError
. Is there some sort of spam filter on Opalstack's end that may be capturing these emails?