On Feb 1, 4:03 pm, sjtirtha <[email protected]> wrote: > Hi, > > appengine allows per documentation only passing email as http and the > received email has to be handled by a servlet. What is the best > approach to persist the received email in appengine?
The only approach is to store it in the datastore, same as for storing anything else. It's up to you whether to store the raw messages in a single TextProperty (or the java equivalent), or have a nice searchable entity with all of the useful metadata broken out into separate properties. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
