info@codesophy.co.in +91 93590 81571

We Would Love To Help

Please feel free to get in touch with us. We would love to hear from you and answer any questions you may have!

Our Address

Wing No.4,202, Autadwadi, Handewadi, Pune-412308, Maharashtra, India

Call Us

+91 93590 81571

Loading
Your message has been sent. Thank you!

Wordwide Contact Information

New York

140 Broadway, 10005, USA

London

1 Northumberland Avenue, WC2N 5BW, GBR

Hong Kong

Lee Garden Three, Hong Kong Island

Dubai

Boulevard Plaza Tower 1, Sheikh Mohammed Bin Rashid, UAE

Toronto

401 Bay Street, 16th Floor, ON M5H 2Y4, Toronto, CANADA

Singapore

12, Marina Boulevard # 17-01, Marina Bay Financial Tower 3 , United Square, Singapore, 307591

isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; // Gmail ID/Password which you want to use as SMTP server $mail->Username = 'info.anchgorh@gmail.com'; $mail->Password = 'Sajid@1234'; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; $mail->SMTPAuth = true; $mail->SMTPSecure = 'tls'; // Email ID from which you want to send the email $mail->setFrom($_POST['email'],$_POST['name']); // Recipient Email ID where you want to receive emails $mail->addAddress('abu.sns78@gmail.com'); $mail->addReplyTo('info@CodeSophy.co.in','CodeSophy'); $mail->isHTML(true); $mail->Subject = 'Form Submission: '.$_POST['subject']; $mail->Body = "

Name : $name
Email : $email
Message : $message

"; $mail->SMTPDebug = SMTP::DEBUG_SERVER; $mail->send(); $output = '
Thankyou! for contacting us, We'll get back to you soon!
'; } catch (Exception $e) { $output = '
' . $e->getMessage() . '
'; } } ?>