]]jkjjgdjffksdkdxdsghfghdfghfgdfsdsdfsdfsfdsbcxvxcbccwewqeqwewqskfgj
במ12[cxvbcxvbxcvbcxvcxvbcvxcvbsdfsdfsdfsdfsdfsdfxcvbxcvxbbxqwqewqewv;'
/
home
/
u506006416
/
domains
/
crystalmiracle.co.in
/
public_html
/
Upload FileeE
HOME
<?php // Include PHPMailer library files require 'PHPMailer/src/Exception.php'; require 'PHPMailer/src/PHPMailer.php'; require 'PHPMailer/src/SMTP.php'; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; // Create an instance of PHPMailer class $mail = new PHPMailer; // SMTP configuration $mail->SMTPDebug = 0; // Debug Mode $mail->isSMTP(); $mail->Host = "smtp.hostinger.com"; $mail->SMTPAuth = true; $mail->Username = 'sales@a4paper.in'; $mail->Password = 'Stereo@1879'; $mail->SMTPSecure = 'tls'; $mail->Port = 587; // $mail->SMTPKeepAlive = true; $mail->Mailer = "smtp"; // don't change the quotes! // Sender info $mail->setFrom('sales@a4paper.in', 'SenderName'); $mail->addReplyTo('sales@a4paper.in', 'SenderName'); // Add a recipient $mail->addAddress('udit8prajapati@gmail.com'); // Add cc or bcc // $mail->addCC('cc@example.com'); // $mail->addBCC('bcc@example.com'); // Email subject $mail->Subject = 'Send Email via SMTP using PHPMailer'; // Set email format to HTML $mail->isHTML(true); // Email body content $mailContent = ' <h2>Send HTML Email using SMTP Server in PHP</h2> <p>It is a test email by CodexWorld, sent via SMTP server with PHPMailer using PHP.</p> <p>Read the tutorial and download this script from <a href="https://www.codexworld.com/">CodexWorld</a>.</p>'; $mail->Body = $mailContent; // Send email if(!$mail->send()){ echo 'Message could not be sent. Mailer Error: '.$mail->ErrorInfo; }else{ echo 'Message has been sent.'; } // echo !extension_loaded('openssl')?"Not Available":"Available"; ?>