Yii2 - 即时生成Pdf并附加到电子邮件

时间:2016-12-09 10:21:55

标签: pdf yii2 response email-attachments swiftmailer

这就是我可以生成pdf页面的方式

public function actionPdf(){
    Yii::$app->response->format = 'pdf';
    $this->layout = '//print';
    return $this->render('myview', []);
}

这就是我发送电子邮件的方式

$send = Yii::$app->mailer->compose('mytemplate',[])
    ->setFrom(Yii::$app->params['adminEmail'])
    ->setTo($email)
    ->setSubject($subject)
    ->send();

如何将pdf生成为文件并将其随时附加到我的电子邮件中?

3 个答案:

答案 0 :(得分:5)

Mailer有一个名为attachContent()的方法,您可以在其中放置pdf文件。

PDF应该在输出目的地设置为字符串的情况下呈现,然后将其作为参数传递给attachContent()

样品:

Yii::$app->mail->compose()
   ->attachContent($pathToPdfFile, [
        'fileName'    => 'Name of your pdf',
        'contentType' => 'application/pdf'
   ])
   // to & subject & content of message
   ->send();

答案 1 :(得分:2)

我就这样做了

在我的控制器中:

$mpdf=new mPDF();
$mpdf->WriteHTML($this->renderPartial('pdf',['model' => $model])); //pdf is a name of view file responsible for this pdf document
$path = $mpdf->Output('', 'S'); 

Yii::$app->mail->compose()
->attachContent($path, ['fileName' => 'Invoice #'.$model->number.'.pdf',   'contentType' => 'application/pdf'])

答案 2 :(得分:0)

这就是我在Yii2中发送邮件的方式

private function sendPdfAsEmail($mpdf)
    {
        $mpdf->Output('filename.pdf', 'F');
        $send = Yii::$app->mailer->compose()
        ->setFrom('admin@test.com')
        ->setTo('to@gmail.com')
        ->setSubject('Test Message')
        ->setTextBody('Plain text content. YII2 Application')
        ->setHtmlBody('<b>HTML content.</b>')
        ->attach(Yii::getAlias('@webroot').'/filename.pdf')
        ->send();
        if($send) {
            echo "Send";
        }
    }
  1. mpdf实例传递给我们的自定义函数。
  2. 使用F中的mpdf选项将输出保存为文件。
  3. 使用Yii邮件程序中的attach选项并设置保存文件的路径。