<?php
$to = "hackme@hack.me";
$subject = "Test Email";
$message = "This is a test email from 1984 Hosting.";
$headers = "From: notice@jim.pagetelegram.com\r\n";
if (mail($to, $subject, $message, $headers)) {
    echo "Email sent successfully.";
} else {
    echo "Email sending failed.";
}
?>
