Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
548 views
in Technique[技术] by (71.8m points)

smtp - Sending mail from localhost using PHP

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

<?php
$to      = 'o****[email protected]';
$subject = 'hey You';
$message = 'Can you identify me :P';
$headers = 'From: at*****[email protected]' . "
" .
    'Reply-To: at*****[email protected]' . "
" .
    'X-Mailer: PHP/' . phpversion();

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

At first, I tried to send the mail to myself(at*****[email protected]), 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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
  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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...