Problem by sending PDF, generated with TCPDF via PHPMailer | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Problem by sending PDF, generated with TCPDF via PHPMailer

I read a lot here and there, but somehow I could'n find a solution. I am trying to send a PDF, generated with TCPDF, as attachment using with PHPMailer. As soon as I try I get the message: "Warning: base64_encode() expects parameter 1 to be string, object given in C:\xampp\htdocs\pap KK\Root\phpmailer-master\src\PHPMailer.php on line 3179", but the mail is Always send. Unfortunatelly the PDF is brocken. It is not empty. As soon as I use: $pdf->Output('e-tickets.pdf', 'D'); it saves a perfect PDF copy, Help, what the heck am I doing wrong... V Here is the Code https://code.sololearn.com/weV2mYEB26y8

30th May 2020, 9:02 PM
pap
pap - avatar
1 Antwort
0
Solved! It’s because I was passing the PDF object and not the string representation of it. correction: $var = $pdf->Output('e-tickets.pdf', 'S'); [solution through Stackoverflow]
31st May 2020, 6:13 PM
pap
pap - avatar