I want to send mail from my php site. But i dont have any idea about how to configur it. I am using BigRock Hosting service. And the code below shown is using now as the sendmail.php page to send mail..

<?php
$to = $to;
$subject = "My subject here";
$message = "Hello! This is a simple email message.";
$from = "Mymailaddress@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>

Please help me!!

Member Avatar for diafol

Sometimes your host will set things so that you also make use of the 5th parameter (additional parameters). This is often to set flags, e.g. of 5th param:

-f name@example.com

See your host's FAQ's about using mail(). Almost every host I've used for shared hosting accounts insist on this. Otherwise users can jojob and send emails which look as though they come from fictitious or other people's addresses.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.