PHP联系表格附件

时间:2017-06-10 17:52:53

标签: php html smtp phpmailer

我在html中创建了一个联系表单。在提交表单时,电子邮件应与附件一起发送,无论他们在表单中选择了哪个文件。

1 个答案:

答案 0 :(得分:0)

查看this answer(由@sdc回答)。使用PHPMailer脚本。这是一个例子:

$email = new PHPMailer();
$email->From     = 'you@example.com';
$email->FromName  = 'Your Name';
$email->Subject   = 'Message Subject';
$email->Body      = $bodytext;
$email->AddAddress( 'destinationaddress@example.com' );

$file_to_attach = 'PATH_OF_YOUR_FILE_HERE';

$email->AddAttachment( $file_to_attach , 'NameOfFile.pdf' );

return $email->Send();