2015-01-05 134 views
0

有人可以幫我找到下面的代碼,我用php發送郵件有什麼問題。無法使用phpmailer發送郵件

error_reporting(E_STRICT); 
date_default_timezone_set('asia/kolkata'); 
require_once('class.phpmailer.php'); 
$mail = new PHPMailer(); 
$mail->IsSMTP(); 
$mail->SMTPDebug = 1; 
$mail->SMTPAuth = true; 
$mail->SMTPSecure = 'ssl'; 
$mail->Host = "smtp.gmail.com"; 
$mail->Port = 465; 
$mail->IsHTML(true); 
$mail->Username = "[email protected]"; 
$mail->Password = "mypassword"; 
$mail->From = ("[email protected]"); 
$mail->SetFrom("manikandan"); 
$mail->Subject = "Test"; 
$mail->Body = "hello"; 
$mail->AddAddress("[email protected]"); 
if(!$mail->Send()) 
    { 
    echo "Mailer Error: " . $mail->ErrorInfo; 
    } 
    else 
    { 
    echo "Message has been sent"; 
    } 

?> 

我收到以下錯誤: - 2015-01-05 04:32:10 Invalid address: manikandan 我使用PHP 5.2.2,Apache 2.0的處理程序在Windows中。

+0

[通過PHP郵件程序使用Gmail SMTP服務器發送電子郵件的可能的副本](http://stackoverflow.com/questions/16048347/send-email-using-gmail-smtp-server-through-php-mailer) –

+0

yes我也試過改變php.ini也 – Johnuser4418813

+0

如果它說'無效的地址:manikandan'我認爲你的問題是'$ mail-> SetFrom(「manikandan」);'。將其更改爲'$ mail-> SetFrom(「[email protected]」);' – Mooseknuckles

回答

2

setFrom需要一個電子郵件地址作爲第一個參數。嘗試:

$mail->setFrom('[email protected]'); 

如果你也想設置一個合適的名字,使用第二個參數

$mail->setFrom('[email protected]', 'John Smith'); 

http://phpmailer.github.io/PHPMailer/classes/PHPMailer.html#method_setFrom

另外,我覺得你應該使用自動加載磁帶機,而不是包括PHPMailer的直接上課。

+0

我試過這個,但它什麼都沒顯示。 – Johnuser4418813

+0

沒有錯誤信息?如果它沒有顯示相同的錯誤信息,但仍然無法正常工作,這意味着您有另一個問題。 –

+0

我認爲是@mtinsley我試過了解我所知道的一切,但我無法修復它,因爲我是編程新手 – Johnuser4418813

0

試試這個:

$mail->setFrom('[email protected]', 'manikandan'); //setFrom expect email 

全碼:

<?php require 'PHPmailer/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) 
// 1 = client messages 
// 2 = client and server messages 
$mail->SMTPDebug = 2; 
//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]"; 
//Password to use for SMTP authentication 
$mail->Password = "mypassword"; 
//Set who the message is to be sent from 
$mail->setFrom('[email protected]', 'manikandan'); 
//Set an alternative reply-to address 
$mail->addReplyTo('[email protected]', 'peter'); 
//Set who the message is to be sent to 
$mail->addAddress('[email protected]', 'peter1991'); 
//Set the subject line 
$mail->Subject = 'Test'; 
//Read an HTML message body from an external file, convert referenced images to embedded, 
//convert HTML into a basic plain-text alternative body 
    $mail->Body  = "Hi ,! Welcome to PHP mail function. \n\n ."; 
//Replace the plain text body with one created manually 
    $mail->AltBody = 'This is a plain-text message body'; 
//Attach an image file 
//$mail->addAttachment('images/phpmailer_mini.gif'); 
$mail->SMTPAuth = true; 
//send the message, check for errors 
if (!$mail->send()) { 
echo "Mailer Error: " . $mail->ErrorInfo; 
} else { 
echo "Message sent!"; 
} 
?> 
+0

感謝@Priyank,但它不起作用 – Johnuser4418813

+0

你有沒有得到任何錯誤? – Priyank

+0

沒有錯誤,它什麼也沒有顯示 – Johnuser4418813

0

爲了解決這只是打開訪問安全性較低的應用程序在你的谷歌賬戶。希望這可以幫助。