Use this code :
$to = Email;
$subject = subject ;
$body = " hi hi ..
";
$headers = 'From: YourLogoName info@domain.com' . "\r\n" ;
$headers .='Reply-To: '. $to . "\r\n" ;
$headers .='X-Mailer: PHP/' . phpversion();
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
if(mail($to, $subject, $body,$headers)) {
echo('
'."Email Sent ;D ".'');
}
else
{
echo("Email Message delivery failed...
");
}