我有用于发送带有附件的电子邮件的 CodeIgniter 脚本。
$this->ci->email->attach("/path/to/file/myjhxvbXhjdSycv1y.pdf");
它工作得很好,但我不知道如何将附件重命名为一些更用户友好的字符串?
我有用于发送带有附件的电子邮件的 CodeIgniter 脚本。
$this->ci->email->attach("/path/to/file/myjhxvbXhjdSycv1y.pdf");
它工作得很好,但我不知道如何将附件重命名为一些更用户友好的字符串?
自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 = '')
根据用户指南:
如果您想使用自定义文件名,可以使用第三个参数:
$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();
第二:将第 161-166行的代码更改为:
if ($clear_attachments !== FALSE)
{
$this->_attach_new_name = array();
$this->_attach_name = array();
$this->_attach_type = array();
$this->_attach_disp = array();
}
第三:找到#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;
}
第四:最后在#1143行将代码更改为:
$basename = ($this->_attach_new_name[$i] === NULL)
? basename($filename) : $this->_attach_new_name[$i];
$this->email->attach('/path/to/fileName.ext', 'attachment', 'newFileName.ext');
此方法也适用于 CodeIgniter v1.7x
但是你一定不要忘记修改下面的这个函数来添加$this->_attach_new_name
也被清理:
public function clear($clear_attachments = FALSE){
$this->_subject = "";
$this->_body = "";
$this->_finalbody = "";
$this->_header_str = "";
$this->_replyto_flag = FALSE;
$this->_recipients = array();
$this->_cc_array = array();
$this->_bcc_array = array();
$this->_headers = array();
$this->_debug_msg = array();
$this->_set_header('User-Agent', $this->useragent);
$this->_set_header('Date', $this->_set_date());
if ($clear_attachments !== FALSE){
$this->_attach_new_name = array();
$this->_attach_name = array();
$this->_attach_type = array();
$this->_attach_disp = array();
}
return $this;
}