Is it possible to send an attachment from temporary directory?
When I send the mail I am getting the print_r($_FILES) as
Array ( [file] => Array ( [name] => test.doc
[type] => application/msword
[tmp_name] => /tmp/php2UaLKE
[error] => 0 [size] => 681472 )
)
and my error is Unable to locate the following email attachment: /tmp/php2UaLKE/EasyToEat.doc
and my statement like:
$attachment=$_FILES['file']['tmp_name'].'/'.$_FILES['file']['name'];
$this->email->attach($attachment);
I want to know is it possible to attach an document to mail without uploading that to specified location on the server in codeigniter?