沃梦达 / 编程问答 / php问题 / 正文

无法通过php发送邮件

unable to send mail via php(无法通过php发送邮件)

本文介绍了无法通过php发送邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用php发送邮件。我正在使用WampServer。 因此,我尝试了以下代码

ini_set("SMTP","smtp.gmail.com" );
ini_set("smtp_port","465");
ini_set('sendmail_from', 'person1@gmail.com');          
$to = "person2@gmail.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "person1@gmail.com";
$headers = "From:" . $from;
$retval = mail($to,$subject,$message,$headers);
   if( $retval == true )  
   {
      echo "Message sent successfully...";
   }
   else
   {
      echo "Message could not be sent...";
   }

但连接时间较长,并表示无法连接到本地主机。 请帮我解决这个问题

推荐答案

尝试此配置:

http://blog.techwheels.net/send-email-from-localhost-wamp-server-using-sendmail/

这可能有帮助。

这篇关于无法通过php发送邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:无法通过php发送邮件

基础教程推荐