Skip to content Skip to sidebar Skip to footer

Using Google App Engine's Mail Api For Django-allauth Email

I'm working on a project hosted on Google App Engine, and using Django-allauth for my user system. Right now I'm just using the following setup in settings.py EMAIL_USE_TLS = True

Solution 1:

You have to tell django-allauth about your custom adapter by adding the following line to settings.py

ACCOUNT_ADAPTER = 'my_app.MyAccountAdapter'

taking care to replace my_app with the correct name

Post a Comment for "Using Google App Engine's Mail Api For Django-allauth Email"