I have a PHP form simply using mail() function of PHP. After i changed my server emails to use SSL (Secure-SMTP,Secure-IMAP,Secure-POP) the form don’t send emails to account@mydomain.com , I think it’s because of the protocol changes and hope someone can help me with this.
Also I tried to use SMTP Authentication in my PHP codes using SSL (to see if it can solve my problem) but i don’t know what is the included file at the first of this example: http://email.about.com/od/emailprogrammingtips/qt/PHP_Email_SMTP_Authentication.htm
The example you posted describes how to send mail with the Mail Pear library. So the
require_once “Mail.php”; instruction simply loads this Pear library.
It assumes you have correctly installed it, see pear documentation.
Another good library for mail via php is phpmailer!