Sending mail from localhost using PHP

孤者浪人 提交于 2019-11-28 06:53:24

问题


I am trying to send mail from localhost using PHP. I am using the following code to send the mail :-

<?php
$to      = 'o****e@gmail.com';
$subject = 'hey You';
$message = 'Can you identify me :P';
$headers = 'From: at*****t@gmail.com' . "\r\n" .
    'Reply-To: at*****t@gmail.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

At first, I tried to send the mail to myself(at*****t@gmail.com), it worked fine. However, after that, now if I am changing the $to, its still sending the mail to same ID(mine) with the previous contents(not the updated one).

Is my request getting cached somehow ? Why every mail is being repeatedly sent to me irrespective of change in both contents and $to ?


回答1:


  1. Go to your php.ini file and change SMTP = localhost to SMTP = aspmx.l.google.com and uncomment sendmail_from and put in your sending gmail address. and set smtp_port = 25

  2. Restart localhost



来源:https://stackoverflow.com/questions/13137558/sending-mail-from-localhost-using-php

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!