On Thu, Jul 17, 2014 at 9:11 AM, Seth Moeckel <[email protected]> wrote:
> using built in email ability with a texting phone, i sent a email to my > account from my texting phone and then used the email assigned by att ( ex > [email protected]) > i can send email from python but i need a way to read emails, i tried to > install feedparser via pip , git hub, and just built in linux functions > with no luck. > You can configure your emails to be forwarded to your App Engine application (use a forwarding rule on your email account) then read it in using InboundMailHandler. Here's the documentation: https://developers.google.com/appengine/docs/python/mail/receivingmail . In short, your application can read in mail sent to [email protected], a HTTP handler will be called, and then the email will be processed in a similar way as regular HTTP requests. What exactly do you need feedparser for? In your original post, you stated that "* i needed feed parser for recieving sms*". However, you're already using AT&T's SMS-to-mail gateway, and receiving mail doesn't require feedparser. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
