以下は、HTML フォームからの入力を処理する PHP スクリプトです。スクリプトはうまく機能しますが、試行錯誤した後、単純な古い PHP コードでフォームからの添付ファイルを処理することはできませんでした。
何日も読み、さまざまなコードをテストした後、誰もが事前に作成されたアプリケーションを使用して添付ファイルを簡素化することを提案しています。(私は PHPmailer を選びました。)
私はそれを機能させようとしましたが、見つけることができるのは静的ファイルの例だけです:
PHPmailer の readme からの例:
$mail->AddAttachment("c:\temp\js-bak.sql"); // 添付ファイルを追加
$mail->AddAttachment("c:/temp/11-10-00.zip");
私の質問は、HTML フォームから「ファイル」セレクターを使用してファイルを添付することは可能ですか? もしそうなら、ファイル全体を再コーディングせずに、PHPmailer 添付コードを本番スクリプトに統合できますか?
フォームからファイルを添付するには、どのコードが必要ですか?
私の現在のスクリプト:
<?php
require("phpmailer.inc.php");
$email = new phpmailer;
$uploaddir = 'uploads/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
$email->AddAttachment($uploadfile);
} else {
echo "File failed to attach. Maximum size of 5mb\n";
}
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "example@abc.com";
$email_subject = "IT Request (Support)"; //Email Subject
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation: expected data already exists
if(!isset($_POST['name']) ||
!isset($_POST['datereg']) ||
!isset($_POST['message']) ||
!isset($_POST['email'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$name = $_POST['name']; //Required
$request_date = $_POST['datereg']; //Required
$email_address = $_POST['email']; //Required
$message = $_POST['message']; //Not required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_address)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[\$A-Za-z0-9._%-]/";
if(!preg_match($string_exp,$name)) {
$error_message .= 'The Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$request_date)) {
$error_message .= 'The Request Date you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$message)) {
$error_message .= 'You must list a description in order to submit the form.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "---IT Request Form Content---\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
//These fields are required per validation so they don't need to be tested.
$email_message .= "Name: ".clean_string($name)."\n";
$email_message .= "Email: ".clean_string($email_address)."\n";
$email_message .= "Date of Request: ".clean_string($request_date)."\n";
$email_message .= "Description: ".clean_string($message)."\n";
// create email headers
$headers = 'From: '.$email_address."\r\n".
'Reply-To: '.$email_address."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>
<!-- include your own success html here -->
Thank you for submitting an IT Support Request. Your information will be reviewed as soon as possible.
<META HTTP-EQUIV="refresh" CONTENT="2;URL=http://getsupport/index.html">
<?php
}
?>