0

pisa によって生成された pdf を電子メールに添付する方法を理解しようとしています。以前は、バッファを使用して添付ファイルを作成できましたが、それは私が直接レポートラボを使用していたときでした。その概念を変換されたpdfに適用する方法がわかりません

これは、reportlab を使用して単純に行う方法です。

def pdfgenerate(request):
    # Create the HttpResponse object with the appropriate PDF headers.
    response = HttpResponse(content_type='application/pdf')
    response['Content-Disposition'] = 'filename="invoicex.pdf"'

    buffer = BytesIO()

    # Create the PDF object, using the BytesIO object as its "file."
    p = canvas.Canvas(buffer)

    # Draw things on the PDF. Here's where the PDF generation happens.
    # See the ReportLab documentation for the full list of functionality.
    p.drawString(100, 100, "Hello world.")

    # Close the PDF object cleanly.
    p.showPage()
    p.save()

    # Get the value of the BytesIO buffer and write it to the response.
    pdf = buffer.getvalue()
    buffer.close()

    email = EmailMessage('Hello', 'Body', 'from@from.com', ['to@to.com'])
    email.attach('invoicex.pdf', pdf , 'application/pdf')
    email.send()
    return HttpResponseRedirect(request.META.get('HTTP_REFERER'))

これは、pisa で生成された pdf を使用して、これまでに持っているコードです。

def render_to_pdf(request, template_src, context_dict):
    template = get_template(template_src)
    context = Context(context_dict)
    html  = template.render(context)
    result = StringIO.StringIO()

    pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("ISO-8859-1")), result)
    if not pdf.err:
        response = HttpResponse(result.getvalue(), mimetype='application/pdf')
        response['Content-Disposition'] = 'filename="invoicex.pdf"'
        email = EmailMessage('Hello', 'Body', 'from@from.com', ['to@to.com'])
        email.attach('invoicex.pdf', pdf , 'application/pdf')
        email.send()
        return HttpResponseRedirect(request.META.get('HTTP_REFERER'))
    return HttpResponse('We had some errors<pre>%s</pre>' % escape(html))

def labelsend(request, order_id):
    labels = LabelOrder.objects.get(LabelOrderID=order_id)
    args = {}

    args['labels'] =labels

    return render_to_pdf(request, 'labelsforprint.html', args)
4

1 に答える 1

3

pdfではなくresult.getvalue()が必要です

email.attach('invoicex.pdf', result.getvalue() , 'application/pdf')
于 2014-02-18T13:24:33.853 に答える