
PK 
<?php
putenv("TZ=Asia/Calcutta");
//print $mailcerno;
$timenow = date("d/m/Y- H:i:s", time());
$to = "mypratyush@gmail.com";
$subject = "$mailcerno Updated at $timenow";
$message = "Certifcate $mailcerno was Updated at $timenow";
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
//$headers .= 'Cc: pestcontrol@aol.in' . "\r\n";
//$headers .= 'Bcc: mail@webnextech.com' . "\r\n";
$headers .= 'From: PCFCIndia Alerts <noreply@pcfcindia.com>' . "\r\n";
mail($to, $subject, $message, $headers);
?>


PK 99