gpt4 book ai didi

PhpMailer,以其他名称发送附件

转载 作者:可可西里 更新时间:2023-11-01 12:29:49 25 4
gpt4 key购买 nike

我使用 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");

关于PhpMailer,以其他名称发送附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16776073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com