Send email on new bug in Mantis

10,900

Solution 1

I discovered that I also had to make the Supervisor enabled for 'E-mail on Change of Handler' (I also had to do this for Manager level to receive emails when assigned.

Its now working :)

Solution 2

Login as administrator in mantis.

Click on Manage Configuration.

Click on Email Notification.

You will get a table which tells when mail should be triggered at various instance of time, select appropriate options.

Click here to view the documentation of mantis administrative guide

Attached picture is the snapshot for your assistance...

enter image description here

Below is just for your mantis functionality enhancement...

You can also give CHAT option for different levels of users by including

$g_main_menu_custom_options = array (
                array( "Chat", REPORTER, 'chat_page.php' )
                );

in your config_inc.php.

I've merged phpchat application with mantis.

Solution 3

You can configure to send emails to a particluar user role as "Manager". Then assign all those 65 people this role in the project.

All these people will get mails.

Let me know if this helps.

Share:
10,900
neildeadman
Author by

neildeadman

IT Consultant Dabbles in ASP.NET/C# coding

Updated on June 04, 2022

Comments

  • neildeadman
    neildeadman almost 2 years

    For a particular project, I am trying to configure mantis to send an email to all Supervisors (65) whenever a new bug is submitted.

    To do this I have added an entry to the Configuration Report page as so:

    Username: All Users
    Project Name: Test New
    Type: Complex
    Value:
    
    array ('new' => array('threshold_min' => '65', 'threshold_max' => '65'))
    

    When I add that it re-formats it like so:

    array (
      'new' => 'array(\'threshold_min => \'65',
      'threshold_max' => '65\')',
    )
    

    and doesn't send the emails to the project supervisors.

    Can someone assist me please? Very new to configuring Mantis!