can you help me for renaming attachment file on codeigniter without copy/move the source file? this is my code
$this->email->attach($filename);
can I rename a $filename to "new_file_name.pdf" ?
can you help me for renaming attachment file on codeigniter without copy/move the source file? this is my code
$this->email->attach($filename);
can I rename a $filename to "new_file_name.pdf" ?
Yes, you can. By using third parameter of same function.
$this->email->attach($filename, 'attachment', "new_file_name.pdf");
Although this functionality is only available in CI v3.x
To add this in previous versions you need to change the core email library or extend it. Try this link... adding rename functionality in CI v2.x