Hi guys I need some help here about mailer.
I have created a file register new user (register.php) and when a new user register an email will be sent to their address.
I have this code on my register file but when I run them it's okay but I did not get the email... can anyone assist me what I did wrong?
Thanks.
<?php
$to = "someone@example.com"; //change to a valid email
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com"; //change to a valid email
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>