6

我有用于发送带有附件的电子邮件的 CodeIgniter 脚本。

$this->ci->email->attach("/path/to/file/myjhxvbXhjdSycv1y.pdf");

它工作得很好,但我不知道如何将附件重命名为一些更用户友好的字符串?

4

2 回答 2

15

CodeIgniter v3.x

自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

但是对于 CodeIgniter v2.x,您可以扩展Email库来实现:

  1. 创建一个副本system/libraries/Email.php并将其放入application/libraries/
  2. 重命名文件并添加MY_前缀(或您设置的任何内容config.phpapplication/libraries/MY_Email.php
  3. 打开文件并更改以下内容:

首先:在第 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');
于 2013-08-08T15:31:50.703 回答
1

此方法也适用于 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;
}  
于 2021-06-08T11:03:02.493 回答