It hasn't been updated to use email queues.
After setting up your email configuration as usual in config_inc.php:
Code: Select all
$g_administrator_email = 'aaa@bbb';
$g_webmaster_email = 'aaa@bbb';
$g_from_email = 'aaa@bbb';
$g_from_name = 'Mantis Bug Tracker';
$g_return_path_email = 'aaa@bbb';
$g_enable_email_notification = ON;
$g_phpMailer_method = 2;
$g_smtp_host = 'adlex01.elders.com.au';
$g_smtp_username = '';
$g_smtp_password = '';Where you see the line:
Code: Select all
$result = email_send( config_get_global( 'administrator_email' ), 'Testing PHP mail() function', 'Your PHP mail settings appear to be correctly set.');Code: Select all
$t_email_id = email_store( config_get_global( 'administrator_email' ), 'Testing PHP mail() function', 'Your PHP mail settings appear to be correctly set.');
$result = email_send(email_queue_get($t_email_id));