PHP Scripts Development » PHP Classes Support Forum » Access_user Class Support forum

New version: Access_user class ver. 1.99

(1 post)
  • Started 7 months ago by Olaf

Great offers not only for geeks!


  1. The AU class is now able to send email using the PHPmailer Class!

    Within the last week some users have reported problems with the mail messages because their provider has limited the usage of the mail() function provided by PHP.

    In this version it's possible to send mail by SendMail, SMTP or mail() (the old way).

    just update the class file and change you config file:

    define("USE_PHP_MAILER", true); // true = use phpmailer
    define("PHP_MAILER_SMTP", false); // true send by SMTP, false = senmail
    // if you enable these features you need to install the phpmailer class!
    if (USE_PHP_MAILER) include_once($_SERVER['DOCUMENT_ROOT']."/classes/PHPMailer/class.phpmailer.php");
    if (PHP_MAILER_SMTP) {
    	define("SMTP_SERVER", "mail.domain.com");
    	define("SMTP_LOGIN", "login");
    	define("SMTP_PASSWD", "password");
    }

    The PHPmailer class is available for download here.

    Posted 7 months ago #

RSS feed for this topic

Reply

You must log in to post.