試試這個:
$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!";
}
?>
[通過PHP郵件程序使用Gmail SMTP服務器發送電子郵件的可能的副本](http://stackoverflow.com/questions/16048347/send-email-using-gmail-smtp-server-through-php-mailer) –
yes我也試過改變php.ini也 – Johnuser4418813
如果它說'無效的地址:manikandan'我認爲你的問題是'$ mail-> SetFrom(「manikandan」);'。將其更改爲'$ mail-> SetFrom(「[email protected]」);' – Mooseknuckles