我使用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
如何制作?
答案 0 :(得分:16)
将所需名称作为第二个参数
$mail->AddAttachment($file, "newName.csv");