我使用 phpmailer 发送带附件的电子邮件
file = "/path/bla.csv";
require 'class.phpmailer.php';
$mail = new PHPMailer();
// some oprtions here
$mail->AddAttachment($file);
$mail->Send();
因此,如果使用此代码,将发送带有附件的电子邮件,文件名是:bla.csv
可以在不重命名真实文件的情况下更改附加文件名吗?也就是说,我需要发送bla.csv
文件,但发送的是名称some_other_name.csv
这个怎么做?