Hello,
On 02/11/2004 08:57 PM, Justin Patrin wrote:
Has anyone dealt with this? Any suggestions before I try and botch my own solution?
I would suggest dumping Windows and use a Unix/Linux solution with sendmail or compatible program like qmail, postfix, etc...
If you are stuck with Windows, you may want to try this SMTP class that les you send messages directly to the receipient SMTP server, thus without relaying in any intermediate SMTP server.
http://www.phpclasses.org/smtpclass
If you do not want to change your scripts much, you may also want to use this other class that uses the class above to send message via SMTP. It comes with a wrapper function named smtp_mail() that is compatible with the mail() function but lets you configure SMTP delivery details like direct delivery option.
http://www.phpclasses.org/mimemessage
You could also try PEAR's Mail package. http://pear.php.net/package/Mail
AFAIK, PEAR Mail package does not support SMTP direct delivery, only relaying.
No, not directly, but that hardly seems to matter as the original post asked about relaying.
You could always set up direct delivery by looking up the MX server for the e-mail address and using the 'smtp' Mail type. Or you could make your own Mail_SMTP_Direct class which wraps around Mail_SMTP and post it back to PEAR for others use.
-- paperCrane <Justin Patrin>
-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php