?
Path : /home/enviro777/public_html/ |
Current File : /home/enviro777/public_html/mail7.php |
<?php //include("conn.php"); include("class.phpmailer.php"); extract($_POST); $name=$_POST['name']; //$companyname=$_POST['address']; $mobile=$_POST['phone']; //echo $mobile; //exit; $email=$_POST['email']; $msg=$_POST['message']; //echo $name,$emailid,$textarea; $mail = new PHPMailer(); //$mail->From = "Agus"; $mail->FromName = ("'".$_SERVER['HTTP_HOST ']."'"); //$mail->FromName = "Agus"; //$mail->AddAddress("Designtoonsvishal@gmail.com"); $mail->AddAddress("envirotech76@yahoo.co.in"); //$mail->AddAddress("nitsuttamnagar@gmail.com"); //$mail->AddCC("cuteraj111@gmail.com"); //$mail->AddBCC("anant299@gmail.com"); $mail->WordWrap = 50; $mail->IsHTML(true); $mail->Subject = "Enquiry Form"; $mail->Body=" <table width='100%' border='1' align='center' cellpadding='0' cellspacing='0'> <tr> <td width='50%' valign='top' class='introtext'>Name:</td> <br> <td width='50%'>".$name."</td> </tr> <tr> <td width='50%' valign='top' class='introtext'>mobile:</td> <br> <td width='50%'>".$mobile."</td> </tr> <tr> <td width='50%' valign='top' class='introtext'>Email:</td> <br> <td width='50%'>".$email."</td> </tr> <tr> <td width='50%' valign='top' class='introtext'>Message:</td> <br> <td width='50%'>".$msg."</td> </tr> </table>"; if(!$mail->Send()) { header("location:index.php?st=error"); } else { // echo "Mail sent"; header("location:index.php?st=sended"); //echo "<meta http-equiv='Refresh' Content='0 URL=thankyou.php'>"; } ?>