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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…