作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究发送电子邮件功能。首先,我想从我的角度生成 .pdf 文件。然后我想通过电子邮件附加生成的 .pdf 文件而不将其保存到磁盘中。我在我的 Controller 中使用以下内容:
$pdf = PDF::loadView('getpdf', $data);
Mail::to($to_email)->send(new Mysendmail($post_title, $full_name))
->attachData($pdf->output(), "newfilename.pdf");
$pdf = PDF::loadView('getpdf', $data);
Mail::to($to_email)->send(new Mysendmail($post_title, $full_name));
最佳答案
我认为您需要将其附加到邮件中,而不是附加到邮件中。
$pdf = PDF::loadView('getpdf', $data);
$message = new Mysendmail($post_title, $full_name);
$message->attachData($pdf->output(), "newfilename.pdf");
Mail::to($to_email)->send($message);
关于laravel - 从 View 生成 PDF 以发送附加 PDF 文件的电子邮件,而无需将其保存到磁盘 Laravel 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44560407/
我是一名优秀的程序员,十分优秀!