RE: [PHP] mail() issue

2007-08-22 Thread Jay Blanchard
[snip] PHP Warning: mail() [function.mailhttp://develop1/credit%20card%20processing/Submit/ChildSu pport/function.mail]: SMTP server response: 504 br /: Recipient address rejected: need fully-qualified address. The value of $user_email when it is echoed out above is [EMAIL PROTECTED] [/snip]

Re: [PHP] mail() issue

2007-08-22 Thread Dan Shirah
The . (period) is simply the end of my sentance in the email. The From address is specified in the php.ini and is fully qualified. If I hard code the value of $to into the mail function it works fine. $user_email = [EMAIL PROTECTED] $to = [EMAIL PROTECTED] mail($to, $subject, $message); = PHP

RE: [PHP] mail() issue

2007-08-22 Thread Jay Blanchard
[snip] The . (period) is simply the end of my sentance in the email.   The From address is specified in the php.ini and is fully qualified.   If I hard code the value of $to into the mail function it works fine.   $user_email = [EMAIL PROTECTED] $to = [EMAIL PROTECTED]   mail($to, $subject,

RE: [PHP] mail() issue

2007-08-22 Thread Edward Kay
-Original Message- From: Dan Shirah [mailto:[EMAIL PROTECTED] Sent: 22 August 2007 13:28 To: Jay Blanchard Cc: php-general Subject: Re: [PHP] mail() issue The . (period) is simply the end of my sentance in the email. The From address is specified in the php.ini and is fully

Re: [PHP] mail() issue

2007-08-22 Thread Dan Shirah
[mailto:[EMAIL PROTECTED] Sent: 22 August 2007 13:28 To: Jay Blanchard Cc: php-general Subject: Re: [PHP] mail() issue The . (period) is simply the end of my sentance in the email. The From address is specified in the php.ini and is fully qualified. If I hard code the value

RE: [PHP] mail() issue

2007-08-22 Thread Bastien Koert
try doing a trim($email) to remove any whitespace, just in case bastien Date: Wed, 22 Aug 2007 08:27:36 -0400 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] CC: php-general@lists.php.net Subject: Re: [PHP] mail() issue The . (period) is simply the end of my sentance in the email. The From

Re: [PHP] mail() issue...

2004-11-19 Thread rouvas
Start sendmail with appropriate params to queue messages and not send them immediately. That way, sendmail will immediately accept the message and your script will be freed. sendmail will process the message shortly without delaying you. -Stathis On Thursday 18 November 2004 21:34, Scott

Re: [PHP] mail() issue...

2004-11-19 Thread Manuel Lemos
Hello, On 11/18/2004 04:42 PM, Paul Danko wrote: I am building an application that uses the mail() command. I am running on RedHat v9 with Apache v2 and PHP v4.3.8. The problem is, when I run the mail() function, the submitting page is very slow (1-2 seconds), I assume because it is waiting for

Re: [PHP] mail() issue...

2004-11-18 Thread Scott Fletcher
I did have that similar problem when it took about a minute or two on unix machine. It turn out to be a DNS issue, so the successful workaround I made was to use the host file instead in /etc/hosts by added the machine name to it since that what the sendmail use. Maybe this is in your case?