Guest User

ini phpnya

a guest
May 17th, 2017
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2. if(isset($_GET['do']) || isset($_GET['code']) ||
  3. isset($_GET['name']) || isset($_GET['pass']))
  4. {
  5. $do = $_GET['do'];
  6. $name = $_GET['name'];
  7. $pass = $_GET['pass'];
  8. $code = $_GET['code'];//Redefine just to look better :)
  9. $message = "Selamat datang di Bandung Project\n\n- Account Information -\nUsername: $name\nPassword: $pass\nActivation code: $code\n\n-Team BandungProject";
  10. mail("roleplay@email.com", "Email from server", $message,"From: \"Bandung Project\" <roleplay@email.com>\r\n" ."X-Mailer: PHP/"
  11. echo "Email delivered";
  12. }
  13. ?>
Add Comment
Please, Sign In to add comment