我在SMTP服务器设置端口中有错误

时间:2019-06-18 06:15:59

标签: php html email smtp

我想使用php使用邮件功能发送邮件。我遇到了以下错误:

  

警告:mail():无法通过“ localhost”端口连接到邮件服务器   25,在php.ini中验证您的“ SMTP”和“ smtp_port”设置或使用   第3行的index.php中的ini_set()

<?php

 if(isset($_POST['submit'])){

  if(mail('myemailhere@domain.com', 'Requirement', $_POST['requirement'])){

   echo "Done";

  } else{

  echo "Done";

  }
 }
?>

谢谢。

0 个答案:

没有答案