You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a couple of issues with this. First is that django admins is not necessarily the same as app engine admins. Second is that django admin emails are created at a layer above the app engine email backend, so by the time it gets to the app engine code, you don't know that its meant for admins, which is caused by the first issue that the django admins may not be same as app engine admins.
You could check to see if all the emails in the message are meant for admins and then route it to the send_mail_to_admins function. I'd be happy to take a pull request if you'd like to try fixing the issue, but it might end up being too complicated for this case.
Hmm, looking deeper into this, it does not make sense to have a GAE_ADMINS settins. I think a pseudo-email like "[email protected]" in the settings of ADMINS would fit best, as send_mail_to_admins always mail to all app admins.
a different mail function should be used:
see:
https://groups.google.com/forum/#!topic/google-appengine/YgqNjssh1Aw
The text was updated successfully, but these errors were encountered: