���� JFIF aewtgwgerwasdasd
Server IP : 147.93.80.58 / Your IP : 216.73.216.195 Web Server : LiteSpeed System : Linux id-dci-web1866.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u939086737 ( 939086737) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u939086737/domains/jewarjewellers.in/public_html/ |
Upload File : |
<?php $email = 'jkagarwal1912@gmail.com'; $name = 'Jitendra Agarwal'; //Import PHPMailer classes into the global namespace //These must be at the top of your script, not inside a function use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; use PHPMailer\PHPMailer\Exception; //Load Composer's autoloader require 'vendor/autoload.php'; //Create an instance; passing `true` enables exceptions $mail = new PHPMailer(true); try { //Server settings //$mail->SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output $mail->isSMTP(); //Send using SMTP $mail->Host = 'jewarjewellers.in'; //Set the SMTP server to send through $mail->SMTPAuth = true; //Enable SMTP authentication $mail->Username = 'info@jewarjewellers.in'; //SMTP username $mail->Password = 'Ranchi@123'; //SMTP password $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption $mail->Port = 465; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` //Recipients $mail->setFrom('info@jewarjewellers.in', 'Jeevan Dayini Jeevika Gausewa Sadan'); $mail->addAddress($email, 'Recipient'); //Add a recipient // $mail->addAddress('jkagarwal1912@gmail.com'); //Name is optional $mail->addReplyTo('info@jewarjewellers.in', 'Information'); $mail->addCC('info@jewarjewellers.in'); $mail->addBCC('info@jewarjewellers.in'); //Attachments // $mail->addAttachment('img/001.png'); //Add attachments // $mail->addAttachment('http://jeevandayinijeevikagausewasadan.in/assets/front_end/image/logo.png?v=2.0', '.png'); //Optional name //Content $mail->isHTML(true); //Set email format to HTML $mail->Subject = 'Activate Your Account'; $mail->Body = ' <img src="http://jeevandayinijeevikagausewasadan.in/assets/front_end/image/logo.png?v=2.0" > <br> Welcome to Jeevan Dayini Jeevika Gausewa Sadan<br> Please Activate your account <br> Your Name: '.$name.'<br> Your Email: '.$email. '<br> Sponsor id: '.$sponsorid.'<br>Your userid: '.$userid.'<br>Your Password'.$password.'<br> <a href="https://jewarjewellers.in/gausevasadan/admin/account_verify.php?token='.$token.'"><b>Click Here to verify your account</b></a>' ; $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; $mail->send(); echo 'Message has been sent'; } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } ?>