RE: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-24 Thread Bob McConnell
From: Chris the ini_set (or you can set the 5th param to the mail() function) is a return-path. If the message bounces (recipient's mailbox full, server down, whatever the reason) it gets delivered to that address. They serve different purposes. The dirty little secret that nobody

RE: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-23 Thread Bob McConnell
From: Chris Any light anyone can throw on the 'nob...@myserver.com' address would be most welcome. It is using the apache user @ your host name as the default. Try this: ini_set('sendmail_from', 'whate...@wherever.com'); I will try this but I do not understand why it should work. I have

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-23 Thread Chris
the ini_set (or you can set the 5th param to the mail() function) is a return-path. If the message bounces (recipient's mailbox full, server down, whatever the reason) it gets delivered to that address. They serve different purposes. The dirty little secret that nobody seems to know is

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Edward Diener
scubak1w1 wrote: Edward Diener el...@tropicsoft.com wrote in message news:d9.64.21597.c829e...@pb1.pair.com... Chris wrote: kranthi wrote: of u are sure that the mail was not received as spam... check the log files of the mail server on the server to be sure that the mail actually reached

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Richard Quadling
2009/4/22 Edward Diener el...@tropicsoft.com: scubak1w1 wrote: Edward Diener el...@tropicsoft.com wrote in message news:d9.64.21597.c829e...@pb1.pair.com... Chris wrote: kranthi wrote: of u are sure that the mail was not received as spam... check the log files of the mail server on the

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Edward Diener
Phpster wrote: On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to' address is anything

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Shawn McKenzie
Edward Diener wrote: Phpster wrote: On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to'

RE: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread kyle.smith
Edward Diener wrote: Phpster wrote: On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to'

RE: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread kyle.smith
Phpster wrote: On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to' address is

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Edward Diener
Shawn McKenzie wrote: Edward Diener wrote: Phpster wrote: On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Chris
Any light anyone can throw on the 'nob...@myserver.com' address would be most welcome. It is using the apache user @ your host name as the default. Try this: ini_set('sendmail_from', 'whate...@wherever.com'); I will try this but I do not understand why it should work. I have a 'From:...'

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Edward Diener
Chris wrote: Any light anyone can throw on the 'nob...@myserver.com' address would be most welcome. It is using the apache user @ your host name as the default. Try this: ini_set('sendmail_from', 'whate...@wherever.com'); I will try this but I do not understand why it should work. I

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Chris
Edward Diener wrote: Chris wrote: Any light anyone can throw on the 'nob...@myserver.com' address would be most welcome. It is using the apache user @ your host name as the default. Try this: ini_set('sendmail_from', 'whate...@wherever.com'); I will try this but I do not understand why

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread 9el
Does ini_set actually change the php.ini file in any way ? The reason I ask is that after putting in: Yes it does. :)you should have refered to the manual before using the line. Did you write your own myem...@myserver.com? or you kept that exactly like in code? ini_set('sendmail_from',

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Chris
9el wrote: Does ini_set actually change the php.ini file in any way ? The reason I ask is that after putting in: Yes it does. :)you should have refered to the manual before using the line. It does not. It changes a setting for the script only. It does not change the physical php.ini

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-22 Thread Edward Diener
Chris wrote: Edward Diener wrote: Chris wrote: Any light anyone can throw on the 'nob...@myserver.com' address would be most welcome. It is using the apache user @ your host name as the default. Try this: ini_set('sendmail_from', 'whate...@wherever.com'); I will try this but I do

[PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread Edward Diener
I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to' address is anything other than an ATT address, the mail gets to the recipient. The PHP code for sending the

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread Phpster
On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to' address is anything other than an

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread kranthi
of u are sure that the mail was not received as spam... check the log files of the mail server on the server to be sure that the mail actually reached the mail server from the http server -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread Chris
kranthi wrote: of u are sure that the mail was not received as spam... check the log files of the mail server on the server to be sure that the mail actually reached the mail server from the http server Somehow I doubt ATT gives out that sort of access ;) The idea is right if you have access

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread Edward Diener
Phpster wrote: On Apr 21, 2009, at 20:32, Edward Diener el...@tropicsoft.com wrote: I have a PHP script which uses the PHP 'mail' function. When the script's 'to' address is an ATT address, such as my own as an ATT ISP customer, the mail never gets to me. If the 'to' address is anything

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread Edward Diener
kranthi wrote: of u are sure that the mail was not received as spam... check the log files of the mail server on the server to be sure that the mail actually reached the mail server from the http server I doubt ATT will give me access to the log files on their incoming mail server. -- PHP

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread Edward Diener
Chris wrote: kranthi wrote: of u are sure that the mail was not received as spam... check the log files of the mail server on the server to be sure that the mail actually reached the mail server from the http server Somehow I doubt ATT gives out that sort of access ;) Exactly. The idea

Re: [PHP] Unable to send mail from PHP to ATT e-mail address

2009-04-21 Thread scubak1w1
Edward Diener el...@tropicsoft.com wrote in message news:d9.64.21597.c829e...@pb1.pair.com... Chris wrote: kranthi wrote: of u are sure that the mail was not received as spam... check the log files of the mail server on the server to be sure that the mail actually reached the mail server