我有用于创建可以由用户下载的网页PDF的代码。 我想使用Amazon SES通过邮件将此PDF作为附件发送。
提前致谢!
答案 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()