Monday, 14 December 2015

$email_from = "admin@gccoe.com"; // Who the email is from 
            $email_subject="Reset Your Login Password";
            $email_message="Your GCCOE LOGIN ID-".$emp_id;
            $email_message .="\n\nPlease Click the link to Reset your password\n\n";
            $email_message .="http://www.gccoe.com/admin/resetpassword.php?r_no=".$random;
            $email_to = $user_email; // Who the email is to 
            $headers = "From: ".$email_from; 
            //$headers .= "MIME-Version: 1.0\n" ;
            //$headers .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
            //$headers .= "X-Priority: 1 (Highest)\n";
            //$headers .= "X-MSMail-Priority: High\n";
            //$headers .= "Importance: High\n";
           
            //echo $email_from;
            //echo $email_subject;
            //echo $email_message;
            //echo $email_to;
            //echo $headers;
           
            //$file = fopen($fileatt,'rb'); 
            //$data = fread($file,filesize($fileatt)); 
            //fclose($file); 
            //$semi_rand = md5(time()); 
            //$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; 
               
            //$headers .= "\nMIME-Version: 1.0\n" . 
                //        "Content-Type: multipart/mixed;\n" . 
                    //    " boundary=\"{$mime_boundary}\""; 
            //$email_message .= "This is a multi-part message in MIME format.\n\n" . 
                            //"--{$mime_boundary}\n" . 
                            //"Content-Type:text/html; charset=\"iso-8859-1\"\n" . 
                          // "Content-Transfer-Encoding: 7bit\n\n" . 
            //$email_message .= "\n\n"; 
            //$data = chunk_split(base64_encode($data)); 
            //$email_message .= "--{$mime_boundary}\n" . 
                            //  "Content-Type: {$fileatt_type};\n" . 
                             // " name=\"{$fileatt_name}\"\n" . 
                              //"Content-Disposition: attachment;\n" . 
                              //" filename=\"{$fileatt_name}\"\n" . 
                             // "Content-Transfer-Encoding: base64\n\n" . 
                            // $data .= "\n\n" . 
                              //"--{$mime_boundary}--\n";
                                 
            $ok = @mail($email_to, $email_subject, $email_message, $headers); 
           

No comments:

Post a Comment