Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require '..

Decoded Output download

<?php 
use PHPMailer\PHPMailer\PHPMailer; 
use PHPMailer\PHPMailer\Exception; 
 
require 'include/PHPMailer/src/Exception.php'; 
require 'include/PHPMailer/src/PHPMailer.php'; 
require 'include/PHPMailer/src/SMTP.php'; 
 
 
 
//Create an instance; passing `true` enables exceptions 
$mail = new PHPMailer(true); 
 
try { 
    //Server settings 
 
    $mail->isSMTP();                                            //Send using SMTP 
    $mail->Host       = 'mail.yuupz.com';                     //Set the SMTP server to send through 
    $mail->SMTPAuth   = true;                                   //Enable SMTP authentication 
    $mail->Username   = '[email protected]';                     //SMTP username 
    $mail->Password   = 'w6OEZs6E5esgKzHI';                      //SMTP password 
    $mail->Port       = 587;                                    //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` 
 
    //Recipients 
    $mail->setFrom('[email protected]', 'Yuupz'); 
 
    //$mail->addAddress('[email protected]', 'Joe User');     //Add a recipient 
 
    $mail->addAddress('[email protected]', 'Val Ng');     //Add a recipient 
 
    $mail->addAddress('[email protected]', 'Yuupz');              //Name is optional 
    $mail->addReplyTo('[email protected]', 'Yuupz'); 
 
 
    //Content 
    $mail->isHTML(true);                                  //Set email format to HTML 
    $mail->Subject = 'Here is the subject2'; 
    $mail->Body    = 'This is the HTML message body <b>in bold!</b>'; 
    $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}"; 
} 
?> 

Did this file decode correctly?

Original Code

<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'include/PHPMailer/src/Exception.php';
require 'include/PHPMailer/src/PHPMailer.php';
require 'include/PHPMailer/src/SMTP.php';



//Create an instance; passing `true` enables exceptions
$mail = new PHPMailer(true);

try {
    //Server settings

    $mail->isSMTP();                                            //Send using SMTP
    $mail->Host       = 'mail.yuupz.com';                     //Set the SMTP server to send through
    $mail->SMTPAuth   = true;                                   //Enable SMTP authentication
    $mail->Username   = '[email protected]';                     //SMTP username
    $mail->Password   = 'w6OEZs6E5esgKzHI';                      //SMTP password
    $mail->Port       = 587;                                    //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`

    //Recipients
    $mail->setFrom('[email protected]', 'Yuupz');

    //$mail->addAddress('[email protected]', 'Joe User');     //Add a recipient

    $mail->addAddress('[email protected]', 'Val Ng');     //Add a recipient

    $mail->addAddress('[email protected]', 'Yuupz');              //Name is optional
    $mail->addReplyTo('[email protected]', 'Yuupz');


    //Content
    $mail->isHTML(true);                                  //Set email format to HTML
    $mail->Subject = 'Here is the subject2';
    $mail->Body    = 'This is the HTML message body <b>in bold!</b>';
    $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}";
}
?>

Function Calls

None

Variables

None

Stats

MD5 fd5797746c0f98c2f75b61492db3c846
Eval Count 0
Decode Time 82 ms