Posted by Daniel Tryba on 05/27/05 13:24
smilesinblues@gmail.com wrote:
> My server admin has blocked the mail() due to some spam problems. I
> need to send emails using php. Can anyone guide me to the best method
> of sending emails using php without using mail().
So getting an alternative to mail() will simply circumvent the
"antispam fix".
On unix, mail() is nothing more than a wrapper to a local sendmail
program, on win32 it's a wrapper that communicates to a smtp daemon.
So either you can do yourself (exec()/sockets) or use on of the classes
to be found on the usual sites (phpclasses/hostscritps)...
[Back to original message]
|