1

次のようなものを作成して、django アプリで PDF ファイルを生成します。

context = Context({'data':data_object, 'MEDIA_ROOT':settings.MEDIA_ROOT})
html  = template.render(context)
result = StringIO.StringIO()
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode('UTF-8')), result)
if not pdf.err:
    response = HttpResponse( result.getvalue() )
    response['Content-Type'] = 'application/pdf'
    response['Content-Disposition'] = 'attachment; filename="%s.pdf"'%(title)
    return response

また、ユーザーが PDF ファイルをダウンロードしたい場合にも効果的です。ただし、この PDF を電子メール メッセージに添付する必要があります。そのため、この PDF のコンテンツを取得する必要があります。xhtml2pdf ドキュメントには何も見つかりません。それを解決するのを手伝ってもらえますか?

4

1 に答える 1

1

あなたはすでにここでそれを行っています:

HttpResponse( result.getvalue() )
# result.getvalue() gives you the PDF file content as a string

...それを取得して、メール送信コードで使用できます

そのヘルプについては、こちらを参照してください https://stackoverflow.com/a/3363254/202168

例:

import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import formatdate


context = Context({'data':data_object, 'MEDIA_ROOT':settings.MEDIA_ROOT})
html  = template.render(context)
result = StringIO.StringIO()
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode('UTF-8')), result)

if not pdf.err:
    msg = MIMEMultipart(
        From='from@example.com',
        To='to@example.com',
        Date=formatdate(localtime=True),
        Subject="Here's your PDF!"
    )
    msg.attach(MIMEText(result.getvalue()))

    smtp = smtplib.SMTP('smtp.googlemail.com')  # for example
    smtp.sendmail('from@example.com', ['to@example.com'], msg.as_string())
    smtp.close()
于 2015-01-22T18:36:37.470 に答える