Use the php mail() function.
smantscheff
Nearly a Posting Virtuoso
1,233 posts since Oct 2010
Reputation Points: 300
Solved Threads: 254
$to = "user@puruinvestech";
$subject = "Enter subject here";
$body = $_POST['name'] ." ".$_POST["mobile"];
if(mail($to, $subject, $body))
{
echo "mail send";
} else {
echo "error sending email";
}
dasatti
Junior Poster in Training
57 posts since Dec 2008
Reputation Points: 10
Solved Threads: 5