2017-02-07 56 views
0

新手到PHP時,我點擊提交按鈕它重新加載到主頁,但不發送電子郵件。想知道我在做什麼錯,因爲我不熟悉PHP? 我直接從phpmailer的示例文件夾中提取代碼。我還在最後添加了重定向,以測試發送表單的操作。PHPMailer(表單聯繫人提交)

<body> 
    <header> 
    <div class="flex"> 

     <h1>Waterproofing Services Inc.</h1> 
    <nav> 
     <ul> 
      <li> 
       <a href="index.html">Home</a> 
      </li>  
      <li> 
       <a href="products.html">Products Used</a> 
      </li>  
      <li> 
       <a href="services.html">Services</a> 
      </li> 
      <li> 
       <a class="current" href="freeinspection.html">Free Inspection</a> 
      </li> 
     </ul>  
    </nav> 
    </div> 
    </header> 

    <section id="minishowcase"> 
     <div class="container"> 
     <h1>Free Inspection</h1> 
     </div> 
    </section> 

    <section id="main"> 
     <div class="flex"> 
     <h2>Let us know what Waterproofing Services Inc. can do for you.</h2> 

     </div> 
    </section> 
    <section id="form"> 
    <div class="container"> 
    <div class="flex"> 
     <form method="post" action="handler.php"> 
     Name: <input type="text" name="name" value="Name" required><br>Contact Number:<input type="number" name="number" required><br> 
     Services Needed:<textarea name="message" id="message" required>Explain the services needed...</textarea> 
     <input type="submit" value="SEND"> 
     <p>*All Fields Required*</p> 
     </form>  
    </div>  
    </div> 
    </section> 






<section id="contactus"> 
<div class="container"> 
<div class="flex"> 
<p>1852 Smoke Ridge RD <br> Malvern, AR <br></p> 
<h2 class="footban">Call Now For A Free Estimate<br>(501) 609-6487</h2> 

</div> 
</div> 
</section> 
<?php 
/** 
* This example shows how to handle a simple contact form. 
*/ 

$msg = ''; 
//Don't run this unless we're handling a form submission 
if (array_key_exists('name', $_POST)) { 
date_default_timezone_set('Etc/UTC'); 

require '/home/wsiwaterproofing/public_html/PHPMailerAutoload.php'; 

//Create a new PHPMailer instance 
$mail = new PHPMailer; 
//Tell PHPMailer to use SMTP - requires a local mail server 
//Faster and safer than using mail() 
$mail->isSMTP(); 
$mail->Host = '[email protected]'; 
$mail->SMTPAuth = true; 
$mail->SMTPSecure = 'tls'; 
$mail->Mailer = "smtp"; 
$mail->Port = 465; 
$mail->Username = "[email protected]"; 
$mail->Password = "YOYOYOYOYO"; 

//Use a fixed address in your own domain as the from address 
//**DO NOT** use the submitter's address here as it will be forgery 
//and will cause your messages to fail SPF checks 
$mail->setFrom('[email protected]', 'Ryan V'); 
//Send the message to yourself, or whoever should receive contact for  submissions 
$mail->addAddress('[email protected]', 'Ryan V'); 
//Put the submitter's address in a reply-to header 
//This will fail if the address provided is invalid, 
//in which case we should ignore the whole request 
if ($mail->addReplyTo($_POST['name'], $_POST['number'])) { 
    $mail->Subject = 'New Request from WSI'; 
    //Keep it simple - don't use HTML 
    $mail->isHTML(false); 
    //Build a simple message body 
    $mail->Body = <<<EOT 
Name: {$_POST['name']} 
Number: {$_POST['number']} 
Message: {$_POST['message']} 
EOT; 
    //Send the message, check for errors 
    if (!$mail->send()) { 
     //The reason for failing to send will be in $mail->ErrorInfo 
     //but you shouldn't display errors to users - process the  error, log it on your server. 
     $msg = 'Sorry, something went wrong. Please try again  later.'; 
    } else { 
     $msg = 'Message sent! Thanks for contacting us.'; 
    } 
} else { 
    $msg = 'Invalid email address, message ignored.'; 
} 
} 
header("Location: http://www.wsiwaterproofingservices.com/"); 

?> 
+0

一些示例重定向到主頁,因爲你的'標題(「位置:http://www.wsiwaterproofingservices.com/」);'是外面的,如果聲明,嘗試刪除它,並添加一個try catch來捕獲異常 –

回答

0

將很高興有您的HTML文件的形式。 但是,窗體標籤應該是這樣的:

<form name="form1" id="form1" action="php_file_with_PHPMailer.php" method="post"> 

請仔細檢查你的表單標籤具有正確的行動和正確的方法。

乾杯。

+0

對不起,我添加了表單數據。 –

+0

我需要代碼:) –

+0

對不起,應該可以幫助你。再次感謝 –

0

在您的電子郵件代碼中使用此行來捕獲錯誤(如果有)。

$mail->SMTPDebug = 2;      // enables SMTP debug information (for testing) 

,並依照本Link也爲您在Officials Examples Link