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.