我在html中创建了一个联系表单。在提交表单时,电子邮件应与附件一起发送,无论他们在表单中选择了哪个文件。
答案 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();