Hi guys,
Just wondering what best / easiest way to setup Mantis so that an e-mail gets sent to the a user (wgriffin) every time one of his Team members is responsible for a new entry in Mantis?
there is also a custom function to email notify but i'm not strong with programming and probably would not be able to set it up correctly.
there is also an option under Email Notifications "change status to assigned". to the right there are access levels. I could add this user to one of the access levels, and then configure this email client to only deliver emails to his inbox that match the critera (such as user X Y and Z have been assigned an issue, who are members of his team) but ignore emails from all other users A B C D E F G H I etc...
I have added the option "Email on Status change" for the user (me)
I have set the "change status to acknowledged" in email notifications
I have set the user to be 'manager' which is not used by anyone, just for testing purposes.
I have created an entry and assigned it to myself, I have changed to status to 'acknowledged' but still not getting any email notifying of the status change?
any ideas?
hummmm
Way to have a user notified when issue created?
Moderators: Developer, Contributor
-
newmantisuser
- Posts: 68
- Joined: 06 Aug 2012, 18:13
Re: Way to have a user notified when issue created?
You can enable E-Mail logging to trace what happens.
Add the following lines to config_inc.php and adjust the destination path
Add the following lines to config_inc.php and adjust the destination path
Code: Select all
$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT;
$g_log_destination = 'file:/tmp/mantisbt.log';-
newmantisuser
- Posts: 68
- Joined: 06 Aug 2012, 18:13
Re: Way to have a user notified when issue created?
thanks atrol 