Server IP : 103.118.17.23 / Your IP : 216.73.216.32 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/ |
Upload File : |
<?php use PHPMailer\PHPMailer\PHPMailer; if (isset($_POST['name']) && isset($_POST['email'])) { $name = $_POST['name']; $email = $_POST['email']; $subject = $_POST['subject']; $body = $_POST['body']; require_once "PHPMailer/PHPMailer.php"; require_once "PHPMailer/SMTP.php"; require_once "PHPMailer/Exception.php"; $mail = new PHPMailer(); //SMTP Settings $mail->isSMTP(); $mail->Host = "smtp.gmail.com"; $mail->SMTPAuth = true; $mail->Username = "vijaymole@gmail.com"; //enter you email address $mail->Password = 'AMdr8380@viju'; //enter you email password $mail->Port = 465; $mail->SMTPSecure = "ssl"; //Email Settings $mail->isHTML(true); $mail->setFrom($email, $name); $mail->addAddress("dreamsdesk@gmail.com"); //enter you email address $mail->Subject = ("$email ($subject)"); $mail->Body = $body; if ($mail->send()) { $status = "success"; $response = "Email is sent!"; } else { $status = "failed"; $response = "Something is wrong: <br><br>" . $mail->ErrorInfo; } exit(json_encode(array("status" => $status, "response" => $response))); } ?>