Hello,

On 01/21/2003 10:13 AM, Dankshit wrote:
Is there a way to autenticate an SMTP server in my PHP.ini???
No.


In my development site, i need to autenticate a SMTP, but in the
PHP.INI does not have an option to autenticate..does anybody has any
solution for this??
You may want to try this composing and sending class that has a sub-class for sending via SMTP with authentication suppport.

http://www.phpclasses.org/mimemessage

If you do not want to change much your program, it comes with a wrapper function named smtp_mail() that you can use in replacement of mail() calls as smtp_mail() emulates mail() completely with the advantage of features like authentication that mail() does not support.

In that case you also need this other class for the actual SMTP delivery:

http://www.phpclasses.org/smtpclass

--

Regards,
Manuel Lemos


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to