Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
serve-20250514211024-20250518085712
:
quote2.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if(isset($_POST)) { require 'phpmailer/PHPMailerAutoload.php'; $email = $_POST['email']; $name = 'Uxbridge Writers'; $asubject = $_POST['Subject_Name']; $date = $_POST['Due_Date']; $time = $_POST['Due_Time']; $pages = $_POST['Pages']; // $words = $_POST['cost']; $workLevel = $_POST['Work_Level']; $reference = $_POST['Reference_Style_Id']; $desc = $_POST['Details']; $countryCode = $_POST['countryCode']; $phone = $_POST['Phone']; //$file = $_FILES['files']['tmp_name']; //$file_name = $_FILES['files']['name']; $int = (int)$pages; $total = $int * 10; $message = ' <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <style> .container{ border-left: 2px solid #EB1923; border-right: 2px solid #EB1923; } .logo{ text-align: center } table { width:100%; } .content{ padding: 10px 20px; } table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 15px; text-align: left; } table th { background-color: black; color: white; } </style> </head> <body> <div class="container"> <div class="logo"> <img src="https://uxbridgewriters.com/app/img/ux-logo.png"/> </div> <div class="content"> <table> <thead> <tr> <th>Email</th> <th>Subject</th> <th>Deadline</th> <th>Words</th> <th>Work Level</th> <th>Reference</th> <th>Details</th> <th>Phone</th> </tr> </thead> <tbody> <tr> <td>'.$email.'</td> <td>'.$asubject.'</td> <td>'.$date.' | '.$time.'</td> <td>'.$pages.'</td> <td>'.$workLevel.'</td> <td>'.$reference.'</td> <td>'.$desc.'</td> <td>'.$countryCode.' | '.$phone.'</td> </tr> </tbody> </table> </div> </div> </body> </html> '; $userMsg = ' <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <style> .container{ margin: auto; padding: 0; font-family: arial, sans-serif; } .flex{ text-align: center; } table { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; } td, th { border: 1px solid #dddddd; text-align: left; padding: 8px; } td:first-child{ font-weight: 600; } tr:nth-child(even) { background-color: #dddddd; } .button{ margin-top: 30px; } .button .submit { background-color: #008000; color: #fff; text-decoration: none; padding: 14px 15px; cursor:pointer; } .credits{ margin-top: 20px; } </style> </head> <body> <div class="container"> <div class="flex"> <img src="https://uxbridgewriters.com/app/img/ux-logo.png"> </div> <div class="para"> <strong>Dear Student</strong> <p>I am Prof. Goodwin Kemp. I will be working on your assignment. Kindly make the payment so that I can start the work.</p> <table> <tr> <td>Subject</td> <td>'.$asubject.'</td> </tr> <tr> <td>Pages / Words</td> <td>'.$pages.' Pages</td> </tr> <tr> <td>Deadline</td> <td>'.$date.' | '.$time.'</td> </tr> <tr> <td>Work Level</td> <td>'.$workLevel.'</td> </tr> <tr> <td>Refrence</td> <td>'.$reference.'</td> </tr> <tr> <td>Phone</td> <td>'.$countryCode.' | '.$phone.'</td> </tr> <tr> <td>Details</td> <td>'.$desc.'</td> </tr> </table> </div> <div class="button flex"> <form action="https://uxbridgewriters.com/serve/payments.php" method="post"> <input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="no_note" value="1" /> <input type="hidden" name="lc" value="UK" /> <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynow_LG.gif:NonHostedGuest" /> <input type="hidden" name="first_name" value="John" /> <input type="hidden" name="last_name" value="Wick" /> <input type="hidden" name="payer_email" value="'.$email.'" /> <input type="hidden" name="item_number" value="123456" / > <input type="hidden" name="item_name" value="'.$asubject.'" / > <input type="hidden" name="item_amount" value="'.$total.'" / > <input class="submit" type="submit" value="PAY USD '.$total.' TO START"/> </form> </div> <div class="credits"> <i>All The Best</i><br/> <i>Thanks & Regards</i><br/> <i>Team UxbridgeWriters.com</i> </div> </div> </body> </html> '; $to = 'sales@uxbridgewriters.com'; $mailer = new PHPMailer(); $mailer->isSMTP(); //$mailer->SMTPDebug = 1; $mailer->SMTPAuth = true; $mailer->SMTPSecure = 'ssl'; $mailer->Host = "mail.uxbridgewriters.com"; $mailer->Port = 465; $mailer->Username = "test@uxbridgewriters.com"; //"smtptestlive@gmail.com"; $mailer->Password = "Test@321"; //"SMtpteST321"; $mailer->setFrom($email, $name); $mailer->addReplyTo($email, $name); $mailer->addAddress($to); for($ct=0;$ct<count($_FILES['files']['tmp_name']);$ct++){ $mailer->AddAttachment($_FILES['files']['tmp_name'][$ct],$_FILES['files']['name'][$ct]); } $mailer->Subject = 'Order From Uxbridge Writers'; $mailer->Body = $message; $mailer->isHtml(true); $mailer->send(); $mailer->clearAllRecipients(); $mailer->Body = $userMsg; $mailer->Subject = 'UxbridgeWriters.com'; $mailer->setFrom($to, $name); $mailer->addReplyTo($to, $name); $mailer->addAddress($email); if(!$mailer->send()){ echo 'Something Goes Wrong'; } else { echo 'Sucessfully Sent'; } } ?>