Send emails from the Google appengine app

I have a web server with Django (the Python programming language) hosted on an Apache server. I would like to configure Google Appengine for the mail server. My web server should be able to use Google Appengine when it sends any email using MailMessage or sendmail email in the api email service. I found out that using remote_api I can access the google appengine server from my main web server. However, I could not access the mail apit supported by the Google appengine. Is remote_api strictly for data storage? This way, only reading db can be made from it, but no other api calls

0
source share
2 answers

The sample code for the remote APi gives you an interactive console from which you can access any of the modules of your application. I do not see the requirement that they be only data warehouse operations.

+2
source

You might want to use a third-party SMTP relay service. Here is a list .

Most of them have a simple API that allows you to forward email to their service. This way you are not bound by the limitations of AppEngine. The more reputable ones also care about the headers, so your application is not marked as a spam sender (which I hope this is not :-)

0
source

Source: https://habr.com/ru/post/1332806/


All Articles