PHP-在addattachment PHPmailer中动态添加文件的名称

时间:2017-03-20 21:06:22

标签: php email phpmailer

我熟悉phpmailer,它是addattachment方法,但我不知道如何动态添加文件的名称?

$m->addAttachment($uploadfile, 'I want the name of the file here');

其余代码与link

相同

我希望当用户选择他的文件时,该文件的名称会在方法中动态显示。

1 个答案:

答案 0 :(得分:1)

原始文件名存储在$_FILES['userfile']['name']中。所以你需要的代码是:

$mail->addAttachment($uploadfile, $_FILES['userfile']['name']);