我使用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
怎么做到这个?
将所需名称作为第二个参数传递
原文链接:https://www.f2er.com/php/135541.html$mail->AddAttachment($file,"newName.csv");