views:

50

answers:

1

Are received mails stored somewhere in google app engine app or have i to store it with separated db class?

+3  A: 

No, you don't need to store mails in the datastore. Incoming emails generate http requests and you just need to associate script handlers to email addresses. See the documentation.

jbochi
Although if you want to read the emails rather than just having your application do something with them immediately, yes, you need to store them because they're not stored anywhere automatically.
Wooble