Email Fix
Here's how I fixed it:
At the bottom of the class.misc.php file, there's a function called sendmail().
I just commented out the entire contents of the function and used my PEAR mailer. Works great. Here's the new and improved function:
function sendmail($to, $subject, $message, $fromaddress,$fromname='', $xheaders = '') {
// === begin matt's mail ===
require_once "Mail.php";
$from = "Customer Support <support@mydomain.com>";
$to = preg_replace("/(\r\n|\r|\n)/s",'', trim($to));
$subject = preg_replace("/(\r\n|\r|\n)/s",'', trim($subject));
$body = preg_replace("/(\r\n|\r)/s", "\n", trim($message));
$host = "mail.mydomain.com";
$username = "mshields@mydomain.com";
$password = "mypassword";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail:('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
// === end matt's mail ====
}