【发布时间】:2018-06-12 14:05:32
【问题描述】:
我想向输入的电子邮件地址发送电子邮件。但我不断收到这个错误。
mail(): Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set()
这是我的代码
<?php
$email=$_POST["email"];
$message="Your application has been submitted tothe Incharge and Admin of the classes. Thanks for applying at our insitute.";
mail($email,"Confirm Application", $message, "From: anemade45@gmail.com");
?>
<form method="post">
<input type="email" name="email" placeholder="enter your email address">
</form>
我应该怎么做才能消除这个错误?
【问题讨论】:
-
希望this链接对你有帮助
-
您是否在 localhost 上安装了邮件服务器?