我熟悉phpmailer,它是addattachment方法,但我不知道如何动态添加文件的名称?
$m->addAttachment($uploadfile, 'I want the name of the file here');
其余代码与link
相同我希望当用户选择他的文件时,该文件的名称会在方法中动态显示。
答案 0 :(得分:1)
原始文件名存储在$_FILES['userfile']['name']
中。所以你需要的代码是:
$mail->addAttachment($uploadfile, $_FILES['userfile']['name']);