【发布时间】:2016-05-31 09:39:11
【问题描述】:
任何人都知道如何使用codeigniter和phpmailer自动附加自动生成的pdf,请帮助
$this->load->library('email');
$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->cc('another@another-example.com');
$this->email->bcc('them@their-example.com');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
【问题讨论】:
-
您发布的代码甚至没有尝试创建或附加 PDF。我建议您从 codeigniter 和 PHPMailer 提供的文档和示例开始,尤其是
addStringAttachment方法。
标签: codeigniter codeigniter-2 phpmailer