2016-06-01 11 views
0

私はhtmlの連絡先フォームに取り組んでいます。私は初期のプロセスでまだ私がテストしていたので、まだsendmail.phpファイルにリンクしています。出現している。それは私が何かを見逃している怖い早期のITにはまだだ私のコードを確認してください:PHPmailer機能PHPからメールを送信

HTML

<form action="sendmail.php" method="post" > 
<table width="101" border="0"> 
    <tr> 
    <th scope="col">Full Name:</th> 
    </tr> 
    <tr> 
    <th width="95" scope="col"><input type="text" name="name" id="to" placeholder="Full Name" /></th><!-- --> 
    </tr> 
    <tr> 
    <th scope="row">Telephone:</th> 
    </tr> 
    <tr> 
    <th scope="row"><input type="text" name="telephone" id="telephone"placeholder="Telephone" /> 
    </tr> 
    <tr> 
    <th scope="row">Subject:</th> 
    </tr> 
    <tr> 
    <th scope="row"><input type="text" name="subject" id="subject" placeholder="Subject" /></th> 
    </tr> 
    <tr> 
    <th scope="row">Message:</th> 
    </tr> 
    <tr> 
    <th scope="row"><textarea name="body" id="body" cols="45" rows="5" placeholder="Message"></textarea></th> 
    </tr> 
    <tr> 
    <th scope="row">&nbsp;</th> 
    </tr> 
    <tr> 
    <th scope="row"><input type="submit" name="submit" id="submit" value="Submit" /></th> 
    </tr> 
</table> 
</form> 

PHP

 <?php 

       session_start(); 

       require_once 'libs/phpmailer/PHPMailerAutoload.php/'; 

       $errors = array(); 



    //if values are null echo null values 
    //in my case i kept null on purpose to see if working 
    //getting nothing 


if(isset($_POST['name'],$_POST['telephone'],$_POST['subject'],$_POST['body'])) 
       { 
        echo 'Null values'; 
       } 

      ?> 
+0

必要なファイルはありますか?エラーメッセージが表示されますか? – pppp

答えて

1

を働くかもしれないあなたのライン

if(isset($_POST['name'],$_POST['telephone'],$_POST['subject'],$_POST['body'])){....} 

はオンが入力タイプのテキストを提出

if(!isset($_POST['name'],$_POST['telephone'],$_POST['subject'],$_POST['body'])){.....} 

あるべきことはありませんNULL

1

EDIT:

require_once 'libs/phpmailer/PHPMailerAutoload.php/'; 

試用彼の?

require_once 'libs/phpmailer/PHPMailerAutoload.php'; 

あなたは私が見る限りで何かをするように求めませんでした。 これは、(1つのファイルにすべての、第二のファイルを作成する必要はありません)

<? 
if($_SERVER['REQUEST_METHOD']=="POST") 
{ 
if(strlen($_POST['name']) == 0) 
{ $error_msg ="- Please, provide us with your name.<br>"; } 
if(strlen($_POST['*****WHATEVER*****']) == 0) 
{ $error_msg ="- Fill in your problem :D.<br>"; } 

if(!empty($error_msg)) 
{ 
echo "<b>Your message can't be send due to the following reason:</b> <br><br>"; 
echo $error_msg; 
echo "<br>Click on <a href='javascript:history.back(1)'>Go back</a> and provide us with your name.<br><br>"; 
} 
else 
{ 
$recipient = "WHO NEEDS TO RECEIVE???"; 
$subject = "Subject, can be filled in via input field if you like"; 
$header = "From: " . $_POST['email'] . "\n"; 
$mail_body = "Contact script was used on " . date("d-m-Y") . " at " . date("H:i") . "h.\n"; 
$mail_body .= "Text you like to read:\n"; 
$mail_body .= "Name: " . $_POST['name'] . "\n"; 
$mail_body .= "\n\n -- End of contact --"; 
mail($recipient, $subject, $mail_body, $header); 
print "Your mail is sent and whatever you like to tell them ;)"; 
} 
} 
else 
{ 
?> 
<form action="<? echo $_SERVER['PHP_SELF']; ?>" method="POST" name="contact"> 
******Then add your tables and label them as you please.**** 
関連する問題