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!';
}
Use $message->attachData($pdf->output(), 'filename.pdf');
instead of $message->attach($pdf->output());
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With