我想使用mail
函数从我的 php 脚本发送邮件。所以我安装了Wamp
并设置sendmail.ini
并php.ini
使用此链接
当我运行我的 php 程序时,它给出:
Email sending failed
我的php程序如下:
<?php
$to = 'xyz@gmail.com'; /* here i added email id of person which i want to send mail */
$subject = 'Testing sendmail.exe';
$message = 'Hi, you just received an email using sendmail!';
$headers = 'From: myid@gmail.com' . "\r\n" .
'Reply-To: myid@gmail.com' . "\r\n" .
'MIME-Version: 1.0' . "\r\n" .
'Content-type: text/html; charset=iso-8859-1' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
if(mail($to, $subject, $message, $headers))
echo "Email sent";
else
echo "Email sending failed";
?>
所以我没有得到我错的地方。谁可以帮我这个事。
谢谢你。