我已经从编码创建了一个pdf文件,我希望通过附在电子邮件中发送该pdf文件。任何人都可以帮忙吗?
提前致谢。
答案 0 :(得分:3)
使用codeigniter附加功能..
$this->email->attach()
它使您可以发送附件。将文件路径/名称放在第一个参数中。
例如..
$this->email->attach('/path/to/yourfile.pdf');
$this->email->send();
浏览用户指南.. http://ellislab.com/codeigniter/user_guide/libraries/email.html
答案 1 :(得分:2)
您可以在此处阅读: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();
请记住,您只能附加自己服务器上的文件。