2015-01-05 137 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

为了解决这只是打开访问安全性较低的应用程序在你的谷歌账户。希望这可以帮助。