How do I attach a file located on Web URL to an email using google app engine (Python)?
I have the file located at say: http://www.abc.com/files/file.pdf
I want to attach this to an email and send it to a user on app engine. How do I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To send attachment you have to fill the attachment field of an email message with a list of two-value tupless containing the file name and the file content. From here