trewq343

Untitled

Dec 23rd, 2011
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. // The message
  3. // www.site.com/test.php?id=1&pass=lol
  4. $to = $_GET['to'];
  5. $code = $_GET['code'];
  6.  
  7.  
  8. $message = "************* PLEASE DO NOT RELPY TO THIS E-MAIL *************\n\nActivation Code: " . $Nick ?;
  9.  
  10. // In case any of our lines are larger than 70 characters, we should use wordwrap()
  11. $message = wordwrap($message, 70);
  12.  
  13. //if (mail("", "", "", "")){ echo "succeed";}
  14. // Send
  15. if (mail($to, 'Santa\'s Loader Activation', $message)){echo "1"};
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment