我知道之前已经问过这个问题,但我显然需要我的手.我正在尝试将pdf附加到电子邮件中并将其发送出去.我已经使用
PHPMailer在Laravel之外完成了它,但现在我正在尝试使用Laravel方式并且无法使其工作.我在这做错了什么?
这是我得到的错误的开始:
FileByteStream.PHP第144行中的Swift_IoException:
无法打开文件进行阅读[%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('example@gmail.com','John Smith')->subject('Send Mail from Laravel'); $message->from('from@gmail.com','The Sender'); $message->attach($pdf->output()); }); echo 'Email was sent!'; }
使用$message-> attachData($pdf-> output(),’filename.pdf’);而不是$message-> attach($pdf-> output());.
原文链接:https://www.f2er.com/laravel/135008.html