//change this to your email.
//$to = "akhiraj@chimpandzinc.com";
$to = "shr8khanna@gmail.com";
$from = "adnan912@gmail.com";
$subject = "Cadbury Celebrations Meethi Memories";
//begin of HTML message
$message = $str='
';
//end of message
$headers = "From: $from\r\n";
$headers .= "Content-type: text/html\r\n";
//options to send to cc+bcc
//$headers .= "Cc: [email]maa@p-i-s.cXom[/email]";
//$headers .= "Bcc: [email]email@maaking.cXom[/email]";
// now lets send the email.
if(mail($to, $subject, $message, $headers)){
echo "Message has been sent....!";
} else {
echo "Cannot send email....!";
}
?>