2016-11-14 23 views
0

こんにちは私はsmtpの最新ファイルを使用していて、ネット上でavailble、SMTPホストのSMTPメールがlocalhostで動作していません。私は自分のデータベースにデータを挿入しています。それらのデータを送信したいです。管理者の電子メールIDです。データがデータベースにも挿入されています。ローカルホストでうまく動作していますが、サーバに接続できません。私は私のホスティングサーバーのサポートフォーラムで連絡したが、彼らはここではこれはあなたのコードの問題 を言っていることはSMTPメールが正常に動作していないサーバが正常に動作しているLocalhost

$mail->SMTPDebug = 1; 

OR

$mail->SMTPDebug = 2; 

その後、私のPHPコード

<?php 
    if(isset($_POST['Isubmit'])){ 
    $rname= $_POST['Iname']; 
    $remail= $_POST['Iemail']; 
    $rcontact= $_POST['Icontact']; 
    $rmessage= $_POST['Icomment']; 
    $rcourse= $_POST['Icourse']; 
    $date=date("Y-m-d"); 
$sql=mysqli_query($connect,"INSERT INTO enquiry(`NAME`,`EMAIL_ID`,`MOBILE_NO`,`COMMENT`,`SUBJECT`,`IS_DELETED`,`DATE`)VALUES('".$rname."','".$remail."','".$rcontact."','".$rmessage."','".$rcourse."','1','".$date."')"); 

//Mail Send Code 


$ToEmail = '[email protected]'; 
$EmailSubject = 'Site contact form'; 
$MESSAGE_BODY = "Dear Sir/Mam,"."\n" ."\n"."New Contact Details are - "."\n"."\n"; 
$MESSAGE_BODY .= "Full Name: ".$rname."\n"."\n"; 
$MESSAGE_BODY .= "Email: ".$remail."\n"."\n"; 
$MESSAGE_BODY .= "Phone: ".$rcontact."\n"."\n"; 
$MESSAGE_BODY .= "Message: ".$rmessage."\n"."\n"; 
$MESSAGE_BODY .= "Course: ".$rcourse."\n"."\n"; 
//SMTP needs accurate times, and the PHP time zone MUST be set 
//This should be done in your php.ini, but this is how to do it if you don'thave access to that date_default_timezone_set('Etc/UTC'); 
     require 'PHPMailer-master/PHPMailerAutoload.php'; 
     //Create a new PHPMailer instance 
    $mail = new PHPMailer; 
    //Tell PHPMailer to use SMTP 
    $mail->isSMTP(); 
    //Enable SMTP debugging // 0 = off (for production use) 
    $mail->SMTPDebug = 0; 
//Ask for HTML-friendly debug output 
    $mail->Debugoutput = 'html'; 
//Set the hostname of the mail server 
    $mail->Host = 'smtp.gmail.com'; 
    //Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission 
      $mail->Port = 465; 
    //Set the encryption system to use - ssl (deprecated) or tls 
     $mail->SMTPSecure = 'ssl'; 
    //Whether to use SMTP authentication 
    $mail->SMTPAuth = true; 
//Username to use for SMTP authentication - use full email address for gmail 
     $mail->Username = "[email protected]";//"[email protected]"; 
    //Password to use for SMTP authentication 
    $mail->Password = "yourpassword";//"[email protected]"; 
     //Set who the message is to be sent from 
     $mail->setFrom('[email protected]', 'Admin'); 
     $mail->addAddress($ToEmail); 
     //Set the subject line 
     $mail->Subject = 'Enquiry Mail'; 
     $mail->Body = $MESSAGE_BODY;//'this is test msg on 25-jun.'; 
     if(!$mail->Send()) { 
     echo "Mailer Error: " . $mail->ErrorInfo; 
     } else { 
      echo "Message sent!<br>"; 
      } 
     } 
+1

ご質問とMySQLとの関係は親切で説明してください。ありがとうございました。 – FDavidov

答えて

0

有効SMTPのデバッグエラーです情報はあなたにエラーの詳細をお知らせします

if (!$mail->Send()) 
{ 
    echo "Mailer Error: " . $mail->ErrorInfo; 
} 
else 
{ 
    echo "Message sent!<br>"; 
} 
+0

サーバーで内部エラーまたは構成ミスが発生し、要求を完了できませんでした。 –

+0

CLIENT - > SERVER:EHLOサーバー名 CLIENT - > SERVER:AUTHのLOGIN CLIENT - > SERVER:aHJkcHJlc3RpZ2Vwb2ludEBnbWFpbC5jb20 = CLIENT - > SERVER:cHJlc3RpZ2Vwb2ludEAxMjM = SMTPエラー:パスワードコマンドが失敗しました: SMTPエラー:認証できませんでした。 CLIENT - > SERVER:QUIT SMTP connect()に失敗しました。 メーラーエラー:SMTP connect()に失敗しました。 https://github.com/PHPMailer/PHPMailer/wiki/トラブルシューティング –

+0

両方のエラーが順番に異なる2つのサーバーに表示される –

関連する問題