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

Re: [PHP] mail() issue

2007-08-22 Thread Dan Shirah
> > 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. &

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

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, $me

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); = P

RE: [PHP] mail() issue

2007-08-22 Thread Jay Blanchard
[snip] PHP Warning: mail() [function.mail]: SMTP server response: 504 : Recipient address rejected: need fully-qualified address. The value of $user_email when it is echoed out above is [EMAIL PROTECTED] [/snip] Just a

[PHP] mail() issue

2007-08-22 Thread Dan Shirah
Hello All, I am having an issue with mail. include '../../Process/include/LDAP.php'; echo $user_email; $to = $user_email; $subject = 'Request Submitted Successfully!'; $message = "Congratulations!\nYour request has been successfully submitted.\nThis is an automated email, please do not reply."

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 the

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 Fletc

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? --s

[PHP] mail() issue...

2004-11-18 Thread Paul Danko
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 the message to be queued up by SendMail. Is there a

[PHP] mail() issue

2003-12-10 Thread Tom Ray [List]
I have an odd issue with mail(). I was working on a project at my office for some time and we did everything with php and mysql. I stepped away from the project for a bit but when I left all my scripts, such as password retrieval and a few others that used the mail() function were working. Now wh