Re: [PHP] alternatives to mail()

2002-04-25 Thread Peter Janett
> Sent: Thursday, April 25, 2002 1:06 AM Subject: Re: [PHP] alternatives to mail() > Just to flesh it out a little more > > Split the address up and get the domain name (the part after the @). > > Do a DNS lookup on that domain name for an MX record. > > If that fails, loo

Re: [PHP] alternatives to mail()

2002-04-24 Thread Miguel Cruz
Just to flesh it out a little more Split the address up and get the domain name (the part after the @). Do a DNS lookup on that domain name for an MX record. If that fails, look for an A record. If that fails, give up. If you got an address, open a socket connection to that address, port

Re: [PHP] alternatives to mail()

2002-04-24 Thread Evan Nemerson
php.net/fsockopen php.net/sockets Have fun ; On Wednesday 24 April 2002 22:14 pm, you wrote: > The commercial server where my pages are hosted is having trouble > with the lastest version of PHP and as a result the mail() function > is not working. E-mailing from PHP is critical for my postca

[PHP] alternatives to mail()

2002-04-24 Thread John Hughes
The commercial server where my pages are hosted is having trouble with the lastest version of PHP and as a result the mail() function is not working. E-mailing from PHP is critical for my postcard and other functions on my site. (I might as well shut four of my sites without e-mail.) Is there a