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