Jiř*_*šek 4 php email codeigniter codeigniter-2
我有CodeIgniter脚本用于发送带附件的电子邮件.
$this->ci->email->attach("/path/to/file/myjhxvbXhjdSycv1y.pdf");
Run Code Online (Sandbox Code Playgroud)
它工作得很好,但我不知道,如何将附加文件重命名为一些用户友好的字符串?
Has*_*ami 12
自CI v3以来添加了此功能:
/**
* Assign file attachments
*
* @param string $file Can be local path, URL or buffered content
* @param string $disposition = 'attachment'
* @param string $newname = NULL
* @param string $mime = ''
* @return CI_Email
*/
public function attach($file, $disposition = '', $newname = NULL, $mime = '')
Run Code Online (Sandbox Code Playgroud)
根据用户指南:
如果您想使用自定义文件名,可以使用第三个参数:
$this->email->attach('filename.pdf', 'attachment', 'report.pdf');
但是对于CodeIgniter v2.x,您可以扩展Email库以实现:
system/libraries/Email.php并将其放入其中application/libraries/MY_前缀(或您设置的任何内容config.php)application/libraries/MY_Email.php第一:在#72行插入:
var $_attach_new_name = array();
Run Code Online (Sandbox Code Playgroud)
第二步:将第#161-166行的代码更改为:
if ($clear_attachments !== FALSE)
{
$this->_attach_new_name = array();
$this->_attach_name = array();
$this->_attach_type = array();
$this->_attach_disp = array();
}
Run Code Online (Sandbox Code Playgroud)
第三步:找到#409attach()行的功能并将其更改为:
public function attach($filename, $disposition = 'attachment', $new_name = NULL)
{
$this->_attach_new_name[] = $new_name;
$this->_attach_name[] = $filename;
$this->_attach_type[] = $this->_mime_types(pathinfo($filename, PATHINFO_EXTENSION));
$this->_attach_disp[] = $disposition; // Can also be 'inline' Not sure if it matters
return $this;
}
Run Code Online (Sandbox Code Playgroud)
第四:最后在#1143行将代码更改为:
$basename = ($this->_attach_new_name[$i] === NULL)
? basename($filename) : $this->_attach_new_name[$i];
Run Code Online (Sandbox Code Playgroud)
$this->email->attach('/path/to/fileName.ext', 'attachment', 'newFileName.ext');
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3167 次 |
| 最近记录: |