Guest
Public paste!

Untitled

By: a guest | Mar 19th, 2010 | Syntax: PHP | Size: 0.53 KB | Hits: 86 | Expires: Never
Copy text to clipboard
  1. <?php
  2.  
  3. $to = 'clubpenguin@live.com';
  4.  
  5. $subject = '000webhost Account Pending Suspension';
  6.  
  7. $message = 'Dear customer, \n We have left you a voicemail of warning against your 000webhost account. Hacking
  8. material was found on your site and needs to be removed within fifteen minutes. \n \n
  9. If you do not remove this material, your account will be deleted. \n \n
  10. Thanks, \n
  11. 000webhost Staff';
  12.  
  13. $headers = 'From: support@000webhost.com';
  14.  
  15. mail($to, $subject, $message, $headers) or die('could not send the e-mail, oh shit');
  16.  
  17. ?>