GIF89a
<?php ob_start(); ini_set('error_reporting', E_STRICT); include("connect.php"); mysqli_set_charset($conn,'utf8'); date_default_timezone_set('Asia/Kolkata'); $email=$_GET['email']; $name=$_GET['name']; $mobb=$_GET['mobb']; $country=$_GET['country']; $other_country=$_GET['other_country']; $date=date('Y-m-d')."( ".date('H:i:s')." )"; $to = "info@quepapa.in"; $subject = "New Whole Sale Customer Request"; $message = " <html> <head> <title>Whole Sale Request</title> </head> <body> <p>Dear Admin,<br><br> You have received a WHOLE SALE request from the website, The details are given below : <br><br> </p> Name : ".$name."<br> Emaild: ".$email."<br> Phone No: ".$mobb." <br> Country: ".$country." <br> Other Specify Country: ".$other_country." <br> Date : ".$date." <br> <br><br><img src='http://quepapa.in/images/logo.png' style='width:100px; height:60px'><br><br> mail server : <a href='http://techeor.co.in/'>Techeor Technology</a> </body> </html> "; // Always set content-type when sending HTML email $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n"; // More headers $headers .= 'From: filter.hostzi@gmail.com' . "\r\n"; $headers .= 'Cc: info@quepapa.in' . "\r\n"; $data=mail($to,$subject,$message,$headers); if($data>0){ echo "1"; } else { echo "0"; } ?>