I have my code for creating a PDF of a web page which can be downloaded by the user. I want to send this PDF as attachment via mail using Amazon SES.

Thanks in advance!

link|improve this question

70% accept rate
2  
have you tried to google for it ? unless you have a more specific question/problem about this it looks like the best resource – Tommaso Barbugli Dec 20 '11 at 12:29
feedback

1 Answer

I would just output/save the PDF in a temporary location on the server like in /tmp/hello.pdf then attach it to the email:

from django.core.mail import EmailMessage

email = EmailMessage('Hello', 'Body goes here', 'from@example.com', ['to1@example.com'])
email.attach_file('/tmp/hello.pdf')
email.send()

G

link|improve this answer
:thanks!!but,i am using amazon ses to send email(Not the one provided by dajngo).Also,i don't want to save my PDF to a temporary location.I want to create it and attach it on the fly. – Alchemist777 Dec 21 '11 at 3:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.