views:

547

answers:

1

My Google app engine application needs to send out email. On development server i specify my smtp configuration (host,port,user,password) while starting the server, and app engine sends email using the specified smtp paramters.

How do i do the same with production server? (if it can be done at all)

+1  A: 

You don't need to configure it - App Engine automatically sends email sent with the mail API using Google's own SMTP infrastructure.

Nick Johnson