I am writing an app that requires email to be sent (notifications)
I am contemplating using mailgun as a service.

1/ I s there a email web service you recommended?

I can send emails through mailgun using the 'request' python module

def send_simple_message():
    data = {"from": "Excited User <m...@samples.mailgun.org>",
              "to": ["t...@gmail.com", "t...@outlook.com"],                 
                                    #
              "subject": "[https] Hello Mama (REQUEST)",
              "text": "Testing some Mailgun awesomness!"}
    return requests.post(
        mailgun_url,
        auth = HTTPBasicAuth(username, password),                           
                    # <-- or simply auth=(username, password)
        data = data )

I can also send emails from the shell using urllib2 (More complex because 
of https)

Cutting and pasting my urllib2 code in my gae app doesn't report any error 
or anything else

2/ Can email be send when using the local gae server or the app have to be 
fully deployed?

3/ Is there a way to send emails through google app engine? (including for 
users that do not have gmail accounts)

4/ I cannot make sense of the gae policy as far as sending emails
What are administrator password?
Where are the administrator accounts?
My domain is not hosted on gae.
I am just using gae for test right now.

Regards



-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/2E2UOMqqL9IJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to