如何在我通过编码创建的Codeigniter中附加文件?

i have created a pdf file from coding and i want that pdf file to send by attaching in the email.Can anyone help?

Thanks in advance.

use codeigniter attach function..

$this->email->attach()

it enables you to send an attachment. Put the file path/name in the first parameter.

eg..

$this->email->attach('/path/to/yourfile.pdf');

$this->email->send();

go through the user guides.. http://ellislab.com/codeigniter/user_guide/libraries/email.html

You can read about it here: 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();

Remember that you can only attach files from your own server.