---- thomas Armstrong <[EMAIL PROTECTED]> wrote: 
> Hi.
> 
> I created this script to send emails:
> -------------------
> $mailFromEmail = "[EMAIL PROTECTED]";
> $mailFromName = "MYDOMAIN";
> $mailTo = "[EMAIL PROTECTED]";
> 
> $mailHeaders =
> "From: $mailFromName <$mailFromEmail>\n"
> . "Content-Type: text/plain; "
> . "charset=UTF-8; format=flowed\n"
> . "MIME-Version: 1.0\n"
> . "Content-Transfer-Encoding: 8bit\n";
> 
> $mailSubject = "Hi! " . date('h:i:s A');
> $mailMessage = "Hi,\n\nHow are you?\n" . date('l dS \of F Y h:i:s A') . "\n";
> 
> mail($mailTo, $mailSubject, $mailMessage, $mailHeaders);
> -------------------
<!-- SNIP -->

Yeah, sounds like you have written a spam sender, which the spam blocking of 
hotmail has flagged and trashed for their senders.

Google will probably flag after the 2nd such comes in to their users...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to