[PHP] Re: Mail-format...

2005-09-22 Thread joshua may
I was having the same issue with one of my clients just today in fact. We just filtered the email addresses to ensure they're valid. There's a million regex's out there to do this for you.. Cheers Josh Gustav Wiberg wrote: Hi there! I wonder why I get get these kind of mails (look down

Re: [PHP] Re: Mail-format...

2005-09-22 Thread Gustav Wiberg
- Original Message - From: joshua may [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Thursday, September 22, 2005 9:50 AM Subject: [PHP] Re: Mail-format... I was having the same issue with one of my clients just today in fact. We just filtered the email addresses to ensure

Re: [PHP] Re: Mail-format...

2005-09-22 Thread M. Sokolewicz
Gustav Wiberg wrote: - Original Message - From: joshua may [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Thursday, September 22, 2005 9:50 AM Subject: [PHP] Re: Mail-format... I was having the same issue with one of my clients just today in fact. We just filtered the email

Re: [PHP] Re: Mail-format...

2005-09-22 Thread Gustav Wiberg
- Original Message - From: M. Sokolewicz [EMAIL PROTECTED] To: Gustav Wiberg [EMAIL PROTECTED] Cc: php-general@lists.php.net; joshua may [EMAIL PROTECTED] Sent: Thursday, September 22, 2005 5:24 PM Subject: Re: [PHP] Re: Mail-format... Gustav Wiberg wrote: - Original Message

[PHP] Re: mail () format

2003-01-27 Thread Philip Hallstrom
Something like... $body = blah blah blah\n; $body .= Name = $name\n; $body .= Address = $address\n; $body .= Comments = $comments\n; mail([EMAIL PROTECTED], subject, $body); would do it. On Tue, 28 Jan 2003, Bruce Levick wrote: I have a number of field entries that I am trying to send