PhpMailer,发送附件作为其他名称

前端之家收集整理的这篇文章主要介绍了PhpMailer,发送附件作为其他名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用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

怎么做到这个?

将所需名称作为第二个参数传递
$mail->AddAttachment($file,"newName.csv");
原文链接:https://www.f2er.com/php/135541.html

猜你在找的PHP相关文章