I am using django 1.8.13 with django-allauth 0.25.2 on appengine with google cloud SQL and I cannot send emails.
I have tried using the django EmailBackend:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
and also the email backend from djangae, which is actually the same as from django-nonrel (I have copied the code to my project):
EMAIL_BACKEND = 'mail.AsyncEmailBackend'
With the django backend I get an error:
gaierror at /accounts/signup/ [Errno 8] nodename nor servname provided, or not known
With the djangae backend I get no error but also no email.
I have set the DEFAULT_FROM_EMAIL setting to an email in the list of authorized senders from my project.
I am out of ideas of what to do more to find out the problem. Any help is appreciated.
Thank you.