kohjhjhصثقص5572lllllllldfgddfgصثقffgggfffgfgfgdfgdg
Ele57885fddfg872llll82ddfgdfgdfgdfgdfgfgfggffggfgfgfghgقفغفغفقhfg555434536
/
home3
/
oraclepublicscho
/
public_html
/
Upload FileeE
HOME
<?php include 'Oracle_Cpanel/config.php'; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; if(isset($_POST['submit'])) { require 'mailer/Exception.php'; require 'mailer/PHPMailer.php'; require 'mailer/SMTP.php'; $edate= $_POST['edate']; $s_name= $_POST['s_name']; $cls = $_POST['cls']; $dob = $_POST['dob']; $name = $_POST['name']; $mobile = $_POST['mobile']; $loc = $_POST['loc']; $presc = $_POST['presc']; $reff = $_POST['reff']; $message = $_POST['descp']; $message = wordwrap($message, 100, "<br/>\n"); $qry7="INSERT INTO admission_form(edate,s_name,cls,dob,name,mobile,loc,presc,reff,descp) VALUES('$edate','$s_name','$cls','$dob','$name','$mobile','$loc','$presc','$reff', '$message')"; $result = mysqli_query($connect,$qry7); $mail = new PHPMailer(true); try { //$mail->SMTPDebug = 2; // Enable verbose debug output //$mail->isSMTP(); $mail->Host = ''; $mail->SMTPAuth = true; $mail->Username = 'noreply@oraclepublicschool.org'; $mail->Password = 'PjWT*XzGQ!FT'; $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; $mail->setFrom("noreply@oraclepublicschool.org", "Oracle Public School"); $mail->addAddress("oraclepublicschool2011@gmail.com", "Oracle Public School"); $mail->AddEmbeddedImage('images/logo.png', 'logo', 'logo.jpg'); $mail->isHTML(true); // Set email format to HTML $mail->Subject = "Oracle Public School, Student Admission Enquiry Details"; $mail->Body =' <div style="background-color:#fff;border: solid #e86d24; width: 99%;"> <br><center><img align="center" width="250"src=\'cid:logo\' /></center><br> </div> <table style="width: 100%;border-color: #0e2737;" border="1" rules="all" > <tr><td style="width: 20%;"> Date : </td><td><b>'.$edate.' </b></td></tr> <tr><td style="width: 20%;"> Student Name : </td><td><b>'.$s_name.' </b></td></tr> <tr><td style="width: 20%;"> Grade : </td><td><b>'.$cls.' </b></td></tr> <tr><td style="width: 20%;"> Date Of Birth : </td><td><b>'.$dob.' </b></td></tr> <tr><td style="width: 20%;"> Parent Name : </td><td><b>'.$name.' </b></td></tr> <tr><td style="width: 20%;"> Parent Mobile : </td><td><b>'.$mobile.' </b></td></tr> <tr><td style="width: 20%;"> Place : </td><td><b>'.$loc.' </b></td></tr> <tr><td style="width: 20%;"> Previous School : </td><td><b>'.$presc.' </b></td></tr> <tr><td style="width: 20%;"> Reference : </td><td><b>'.$reff.' </b></td></tr> <tr><td style="width: 20%;"> Remarks : </td><td><b>'.$message.' </b></td></tr> </table>'; $mail->send(); echo ("<script LANGUAGE='JavaScript'> window.alert('Thanks for your Admission Enquiry...!'); window.location.href='admission'; </script>"); } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } } ?>