これをメールで受け取ります。1 日に数件のメールが届き、潜在的な顧客にリーチする方法がありません。ページをテストしましたが、常に機能しているようです。フォームに空白のエントリを残すと、テストを実行するとエラーが発生します。潜在的な見込み客を失っていると感じているので、この問題を解決できるようにしたいと考えています。
メールは以下のように空白で受信されます。
主題::
Eメール::
代替メール::
メッセージ::
<?php
$where_form_is="http://".$_SERVER['SERVER_NAME'].strrev(strstr(strrev($_SERVER['PHP_SELF']),"/"));
mail("myemail@sample.com","PhpFormGenerator - Contact from Website","Form data:
Subject:: " . $_POST['field_1'] . "
Email:: " . $_POST['field_2'] . "
Alt Email:: " . $_POST['field_3'] . "
Message:: " . $_POST['field_4'] .
");
include("confirm.html");
?>
<BR/><!-- begin form -->
<form method=post enctype=multipart/form-data action=processor.php onSubmit="return validatePage1();"><ul class=mainForm id="mainForm_1">
<li class="mainForm" id="fieldBox_1">
<label class="formFieldQuestion" style="font-size: medium">
Sudject: *</label><select class=auto-style13 name=field_1 id=field_1 style="width: 415px; height: 24px"><option value=''></option>
<option>Sales</option>
<option>Product Questions</option>
<option>Payment Quesitons</option>
<option>Shipping Questions</option>
<option>Support</option>
<option>Other (Not Listed)</option>
</select></li>
<li class="mainForm" id="fieldBox_2">
<label class="formFieldQuestion" style="font-size: medium">Email: *</label><input class=auto-style20 type=email name=field_2 id=field_2 size=20 value="" style="background-image:url('dolls/inflatable/order/imgs/email.png'); background-repeat: no-repeat; padding: 2px 2px 2px 25px; width: 385px; height: 24px;"><label class="formFieldQuestion" style="font-size: medium; width: 228px;">Alt. Email
or Re-Enter Email: *</label></li>
<li class="mainForm" id="fieldBox_3">
<input class=auto-style20 type=email name=field_3 id=field_3 size=20 value="" style="background-image:url('dolls/inflatable/order/imgs/email.png'); background-repeat: no-repeat; padding: 2px 2px 2px 25px; width: 385px; height: 24px;"></li>
<li class="mainForm" id="fieldBox_5">
</li>
<li class="mainForm" id="fieldBox_4">
<label class="formFieldQuestion" style="font-size: medium">
Message: *</label></li><textarea class=mainForm name=field_4 id=field_5 cols=20 style="width: 400px; height: 85px; background: #FFFFFF; color: #000000"></textarea>
<!-- end of this page -->
<!-- page validation -->
<SCRIPT type=text/javascript>
<!--
function validatePage1()
{
retVal = true;
if (validateField('field_1','fieldBox_1','text',1) == false)
retVal=false;
if (validateField('field_2','fieldBox_2','text',1) == false)
retVal=false;
if (validateField('field_3','fieldBox_3','text',1) == false)
retVal=false;
if(retVal == false)
{
alert('Please correct the errors. Fields marked with an asterisk (*)');
return false;
}
return retVal;
}
//-->
</SCRIPT>
<!-- end page validaton -->
<!-- next page buttons -->
<li class="mainForm">
<input id="saveForm" class="auto-style6" type="submit" value="Submit" style="height: 47px; color: #000000; background-color: #CCCCCC; font-size: medium; border: #000000; font-family: Arial, Helvetica, sans-serif; font-style: normal; font-weight: bold; font-size: 100%; font-variant: normal; line-height: normal; width: 277px;" />
</li>
</ul>
</form>
<!-- end of form -->
<!-- close the display stuff for this page -->
私はこれが初めてで、phpformgenerator を使用してこのページを作成しました。私が本当に気にかけているのは、顧客のメールアドレスを取得することだけです。
どんな助けでも大歓迎です。
ありがとう