Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to attach a PDF using barryvdh/laravel-dompdf into an email in Laravel

I know this question has been asked before but I apparently need my hand held. I'm trying to attach the pdf to an email and send it off. I've done it outside of Laravel with PHPMailer, but now I'm trying to it the Laravel way and cant get it to work. What am I doing wrong here?

Here is the start of the error I'm getting :

Swift_IoException in FileByteStream.php line 144: Unable to open file for reading [%PDF-1.3

    public function attach_email($id){

    $info = Load::find($id);

    $info = ['info'=>$info];

    Mail::send(['text'=>'mail'], $info, function($message){

        $pdf = PDF::loadView('pdf.invoice');

        $message->to('[email protected]','John Smith')->subject('Send Mail from Laravel');

        $message->from('[email protected]','The Sender');

        $message->attach($pdf->output());

    });
   echo 'Email was sent!';
  }
like image 894
mcornille Avatar asked Nov 28 '16 15:11

mcornille


1 Answers

Use $message->attachData($pdf->output(), 'filename.pdf'); instead of $message->attach($pdf->output());.

like image 157
pinepain Avatar answered Sep 23 '22 09:09

pinepain