Re: [PHP] Re: mail headers filtering

2002-10-01 Thread Debbie Dyer
- maybe then I can get back to you for some tests. Thanks Debbie - Original Message - From: Chris Hewitt [EMAIL PROTECTED] To: Debbie Dyer [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 8:48 AM Subject: Re: [PHP] Re: mail headers filtering Debbie Dyer wrote: I was talking about my

Re: [PHP] Re: mail headers filtering

2002-10-01 Thread Debbie Dyer
. Debbie - Original Message - From: Chris Hewitt [EMAIL PROTECTED] To: Debbie Dyer [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 10:56 AM Subject: Re: [PHP] Re: mail headers filtering Debbie Dyer wrote: Hi Chris They are having the problem receiving the mail sent by the script

Re: [PHP] Re: mail headers filtering

2002-09-30 Thread Debbie Dyer
Hi Henry I think that we just have to accept that emails can no longer be relied upon. - yes I know we all want to stop spam but when you rely on email to automate signups, speak to customers etc..it's a Good luck finding your javascript encoder Debbie - Original Message -

Re: [PHP] Re: mail headers filtering

2002-09-30 Thread Chris Hewitt
Debbie Dyer wrote: addresses and got it bounced back with the following:- X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server.securesite7.com X-AntiAbuse: Original Domain - c-u-online.co.uk X-AntiAbuse:

Re: [PHP] Re: mail headers filtering

2002-09-30 Thread Debbie Dyer
[EMAIL PROTECTED] To: Debbie Dyer [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, September 30, 2002 6:52 PM Subject: Re: [PHP] Re: mail headers filtering Debbie Dyer wrote: addresses and got it bounced back with the following:- X-AntiAbuse: This header was added to track abuse, please

Re: [PHP] Re: mail headers filtering

2002-09-30 Thread Chris Hewitt
Debbie Dyer wrote: mailboxes too - next one who does I will ask them to check their dns as Its a problem with the sender's domain, rather than the recipient. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: mail headers

2002-02-13 Thread Keith V. (Vance Consulting LLC)
On 13 Feb 2002 at 17:33, Renato Salvatore Moya L. wrote: Hi, i'm writte from Chile. If you writte to little php-script for send mail, what send you mail ?. I question you, because i'm writte a tipical php-script tell a friend, but i have problems with getenv(HTPP_REFERER), because send

RE: [PHP] Re: mail headers

2002-02-13 Thread Rick Emery
Renato, To send mail, use PHP's mail() function: mail($recipient,$subject,$message,$headers); You can reference $HTTP_REFERER directly without saying getenv(HTTP_REFERER) -Original Message- From: Renato Salvatore Moya L. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002

RE: [PHP] Re: mail headers

2002-02-13 Thread Keith V. (Vance Consulting LLC)
On 13 Feb 2002 at 14:40, Rick Emery wrote: Renato, To send mail, use PHP's mail() function: mail($recipient,$subject,$message,$headers); You can reference $HTTP_REFERER directly without saying getenv(HTTP_REFERER) Yeah, and if your mail function is being called within a function, just

Re: [PHP] Re: mail headers

2002-02-13 Thread Renato Salvatore Moya L.
ok gays, thank for all, but i try and no result good :-( look this : My PHP-Script : ? echo ' Prueba de Emailbr>'; echo ' Enviar esta pgina a un amigobr>'; $referer = getenv("HTTP_REFERERl"); mail ('[EMAIL PROTECTED]','Prueba de email',$referer); echo ' enviado..'; ?> Well this script i execute

RE: [PHP] Re: mail headers

2002-02-13 Thread Rick Emery
); echo ' enviado..'; ? -Original Message- From: Renato Salvatore Moya L. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 3:17 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; Rick Emery Subject: Re: [PHP] Re: mail headers Importance: High ok guys, thank for all, but i try

Re: [PHP] Re: mail headers

2002-02-13 Thread Gary
You can't do a tell a firend script on the same page as your mail. 1. link all the pages you want to have mailed to a page that has a form on it. 2 on the page with the form you collect the info you want like the example below. Notice the hidden field. The form action passes the stuff off to