使用Python / Django中的Amazon SES通过电子邮件发送PDF附件

时间:2011-12-20 11:10:52

标签: django email pdf amazon-ses

我有用于创建可以由用户下载的网页PDF的代码。 我想使用Amazon SES通过邮件将此PDF作为附件发送。

提前致谢!

1 个答案:

答案 0 :(得分:0)

我只是在服务器上的临时位置输出/保存PDF,如/tmp/hello.pdf,然后将其附加到电子邮件中:

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()