Contact Us
Home / Contact Us

Please Fill The Details

Full Name
Email Id
Phone Number
Message
isSMTP(); //Send using SMTP $mail->Host = 'smtp.gmail.com'; //Set the SMTP server to send through $mail->SMTPAuth = true; //Enable SMTP authentication $mail->Username = 'psquare4849@gmail.com'; //SMTP username $mail->Password = 'kpnr bgjo xihg icoa'; //SMTP password $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption $mail->Port = 465; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` //Recipients $mail->setFrom('psquare4849@gmail.com', 'Contact Form'); $mail->addAddress('pavanmalvi48@gmail.com', 'HEBBEVU'); //Add a recipient //Content $mail->isHTML(true); //Set email format to HTML $mail->Subject = 'Enquiry From HEBBEVU Website'; $mail->Body = "Sender Name - $name
Sender email - $email
Sender phone - $phone
message - $message"; $mail->send(); echo""; } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } } ?>