We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see this error message in the UI, but nothing on Sentry/logs that would help me understand why the email wasn't sent.
This is what I see in the notifications area:
Couldn't deliver email message: provider error: Here is an update! For RaviAnand Mohabir - By ChiefOnboarding
Couldn't deliver email message: provider error: Welcome to ! For - By ChiefOnboarding
The text was updated successfully, but these errors were encountered:
Could you try this:
Open Django shell by going into the docker container (I am using chiefonboarding_web as the docker name here, change it with whatever you have):
chiefonboarding_web
docker exec -it chiefonboarding_web python manage.py shell
Sending email manually (change email address to where you want this test email to go):
from django.conf import settings from django.core.mail import send_mail send_mail("Test subject", "Test message", settings.DEFAULT_FROM_EMAIL, ["[email protected]"])
That should give you a clearer error to see what is going on.
Sorry, something went wrong.
No branches or pull requests
I see this error message in the UI, but nothing on Sentry/logs that would help me understand why the email wasn't sent.
This is what I see in the notifications area:
The text was updated successfully, but these errors were encountered: