Having issues getting the alert to mail. I am not using SMTP, I have sendmail installed locally to the OS. If I use the PHP mail(); function in a test script and execute it in the broswer, it sends mail just fine. Here is the email params in my 'config.php'
file:
$config['email']['enable'] = TRUE;
$config['email']['backend'] = 'mail';
$config['email']['sendmail_path'] = '/usr/sbin/sendmail';
$config['alerts']['interval'] = 40000;
$config['email']['default'] = "me@company.com";
$config['email']['from'] = "Observium <observium@company.com>";
$config['email']['default_only'] = TRUE;