Ask a Question related to PHP Development, Design and Development.
-
bvh #1
Mail Authentication
Is there a way to post authentication settings with the mail()
function for sending emails out through a server that requires login?
bvh Guest
-
ASP.Net Forms authentication with basic authentication popup
Relatively new to ASP.Net but have a strange problem. My site uses forms authentication for a large administration section however after the user... -
Authentication ticket, cookieless, forms authentication?
Hi. I want to use Forms Authentication, cookieless. The issue is setting the Authentication Ticket without using cookies (!) That is, the... -
Apple Mail and SMTP Authentication
Does anyone have a solution (or encountered) the problem below: Running Mail, I connect to an IpSwitch IMail server using SMTP Authentication. I... -
Mail Authentication or redirection of SMTP server
Here is my problem. When I send emails locally theough the Exchange Server I have no problems sending mail. When I try to send emails to another... -
Mail or Authentication or redirection of SMTP
Here is my problem. When I send emails locally theough the Exchange Server I have no problems sending mail. When I try to send emails to another... -
Manuel Lemos #2
Re: Mail Authentication
Hello,
On 10/22/2004 07:13 PM, bvh wrote:No, the mail() function does not support setting the authentication.> Is there a way to post authentication settings with the mail()
> function for sending emails out through a server that requires login?
You mayu want to use this class that comes with a wrapper function named
smtp_mail() that works exactly like the mail() function but lets you set
the SMTP authentication credentials, so you can solve your problem with
minimal changes in your scripts (just change mail() calls to smtp_mail() ).
[url]http://www.phpclasses.org/mimemessage[/url]
You also need these other classes for the actual SMTP delivery and to
perform SMTP authentication:
[url]http://www.phpclasses.org/smtpclass[/url]
[url]http://www.phpclasses.org/sasl[/url]
--
Regards,
Manuel Lemos
PHP Classes - Free ready to use OOP components written in PHP
[url]http://www.phpclasses.org/[/url]
PHP Reviews - Reviews of PHP books and other products
[url]http://www.phpclasses.org/reviews/[/url]
Metastorage - Data object relational mapping layer generator
[url]http://www.meta-language.net/metastorage.html[/url]
Manuel Lemos Guest



Reply With Quote

