I have tried this mod but it does not send mail. I used this script to check the mail function.
<?php
$to = "user@xxxxxxx.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "noreply@xxxxxx.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>