簡體   English   中英

提交php表單后收到兩封電子郵件

[英]Getting two emails after submitting php form

我在我網站的聯系頁面上有聯系表格。 提交表單后,我收到了成功消息,但不是一封,而是在我的電子郵件 ID 上收到兩封類似的電子郵件。 請幫忙。

以下是我在聯系我們表單中的 HTML 代碼

<form name="frm" id="frm" method="POST" action="mail.php">
                         <div class="row">
                            <div class="span04">
                                <h5>Send Us Message</h5>
                                <div class="contact margin_1line"><label>Company Name :</label>
    <input type="text" name="companyname" id="companyname" style="width:220px; float:right; height:30px;" class="validate[required,custom[alphaspace]] for_obj" />&nbsp;</div>
    <br />
   <div class="contact margin_1line"><label>Email ID :</label>
    <input type="text" name="email" id="email" style="width:220px; float:right; height:30px;" class="validate[required,custom[email]] for_obj" />&nbsp; </div>
    <br>
<div class="contact margin_1line"><label for="message">Contact Address :</label>
    <textarea name="address" id="address" class="validate[required] for_obj" rows="8" cols="10" style="width:220px; float:right;"></textarea>&nbsp;</div>
    <br /><br /><br />
<div class="contact" style="float:right;"><label>&nbsp;</label>
            <input type="reset" value="reset" class="butt custom_font" style="float:right;" />
            <input type="submit" value="Send" class="butt custom_font" style="margin-right:10px; float:right;" />
        </div>
                            </div><!-- /span6 -->

                            <div class="span04">
                                <h5>&nbsp;</h5>
                              <div class="contact margin_1line"><label>Contact Person :</label>
    <input type="text" name="contactperson" id="contactperson" style="width:210px; float:right; height:30px;" class="validate[required,custom[alphaspace]] for_obj" />&nbsp;</div>
    <br>
<div class="contact margin_1line"><label>Office No. :</label>
    <input type="text" name="phone" id="phone" class="validate[required,custom[universal_contact]] for_obj" style="width:210px; float:right; height:30px;" />&nbsp;</div>
    <br>
<div class="contact margin_1line"><label for="message">Services Interested :</label>
    <textarea name="interested" id="interested" class="validate[required] for_obj" rows="8" cols="10" style="width:210px; float:right;"></textarea>&nbsp;</div>
                            </div><!-- /span6 -->

                            <div class="span04">
                                <h5>&nbsp;</h5>
                              <div class="contact margin_1line"><label>Designation :</label>
    <input type="text" name="designation" id="designation" style="width:220px; float:right; height:30px;" class="validate[required,custom[alphaspace]] for_obj" />&nbsp;</div>
    <br>
    <div class="contact margin_1line"><label>Mobile :</label>
        <input type="text" name="mobile" id="mobile" class="validate[required,custom[universal_contact]] for_obj" style="width:220px; float:right; height:30px;" />&nbsp;</div>
        <br>
<div class="contact margin_1line"><label for="message">Other Remarks :</label>
    <textarea name="remarks" id="remarks" class="" rows="8" cols="10" style="width:220px; float:right;"></textarea>&nbsp;</div>
                            </div><!-- /span6 -->

                        </div><!-- /row -->
</form>

下面是我在 mail.php 文件中的 PHP 代碼

<?php
$companyname = $_POST['companyname'];
$contactperson = $_POST['contactperson'];
$designation = $_POST['designation'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$mobile = $_POST['mobile'];
$address = $_POST['address'];
$interested = $_POST['interested'];
$remarks = $_POST['remarks'];
$formcontent="Company Name: $companyname \n Contact Person: $contactperson \n Designation: $designation \n Phone: $phone \n Mobile: $mobile \n Contact Address: $address \n Services Interested: $interested \n Other Remarks: $remarks";
$recipient = "demomail@abc.com";
$subject = "Enquiry from Website";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You! <br /> We will get in touch with you as soon as possible.";
?>

您尚未在郵件發送功能上使用任何循環( forwhile )。 所以郵件沒有機會被發送兩次。

因此,您可能已單擊該按鈕兩次,或者您可能添加了以逗號分隔的相同收件人電子郵件地址。

使用驗證碼來防止這種情況。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM