我已经通过编码创建了一个 pdf 文件,我希望通过电子邮件附件发送该 pdf 文件。有人可以帮忙吗?
提前致谢。
使用codeigniter附加功能..
$this->email->attach()
它使您能够发送附件。将文件路径/名称放在第一个参数中。
例如..
$this->email->attach('/path/to/yourfile.pdf');
$this->email->send();
浏览用户指南.. http://ellislab.com/codeigniter/user_guide/libraries/email.html
你可以在这里阅读: http: //ellislab.com/codeigniter/user_guide/libraries/email.html
$this->email->attach('/path/to/photo1.jpg');
$this->email->attach('/path/to/photo2.jpg');
$this->email->attach('/path/to/photo3.jpg');
$this->email->send();
请记住,您只能从自己的服务器附加文件。