>
> I don't really need it in the Google App engine, I just need to be stored
> somewhere so even turning it into an email attachment and mailing it would
> be fine.
>
> The code
>
> class CrashUploader(webapp2.RequestHandler):
>     def post(self):
>         file_data = self.request.get("crashrpt",default_value='This
> Failed');
>
> grabs something. Does anyone know if I can use mail.send_mail to send it
> out as an attachment.
>

Yes
https://cloud.google.com/appengine/docs/python/mail/attachments

So your dynamic handler could just accept the file, and immidiately send it
out. Rather than storing it somewhere.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAJCAUuLiU6q%2BJ-Twd%2BpojTHxc6eOor752iL1XdiofWRrR8k-8w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to