简体   繁体   English

发送电子邮件后phpmailer错误

[英]phpmailer Error after sending Email

在此处输入图片说明

Code: - 代码:-

$mail  = new PHPMailer();
$body="<b>This mail is sent using PHP Mailer</b>";#HTML tags can be included
$mail->IsSMTP();
$mail->SMTPAuth  = true;                 #enable SMTP authentication
$mail->SMTPSecure = "tls";               #sets the prefix to the server
$mail->Host  = "smtp.gmail.com";         #sets GMAIL as the SMTP server
$mail->Port       = 587;                 #set the SMTP port
$mail->Username   = "morelifelondon@gmail.com";     #your gmail username
$mail->Password   = "***********";                  #Your gmail password
$mail->From = $email;    
$mail->FromName   = $name ;                
$mail->Subject    = "Enquiry";
$mail->Body    = $messages;
$mail->AddAddress("morelifelondon@gmail.com","contact");
$mail->IsHTML(true); // send as HTML

if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Mail has Been Sent.';
}
}

I want that morelifelondon@gmail.com is replaced by abhishek@gmail.com . 我希望将morelifelondon@gmail.com替换为abhishek@gmail.com Is this possible ? 这可能吗 ?

$mail->AddAddress("abhishek@gmail.com","contact");

或使用

$mail->AddCC("abhishek@gmail.com","contact");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM