php mail function has stopped working?

Status
Not open for further replies.

g.c.simons36

New Member
Messages
1
Reaction score
0
Points
0
Is there a reason the php mail function has stopped working ie: mail($to,$subject,$message,$headers); - used to work until a couple of days ago?

<?php
$to = "example@example.com";
$subject = "example subject";
$message = "example message";
$headers = "From: user@user.com";

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

?>
 
Last edited:
Status
Not open for further replies.
Top