- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2016 06:42 AM
I have a scenario where end users are getting double emails when the last task to a request is closed with a user visible comment. The system is firing off one email for the comment and another for the request being closed complete. Odd thing, the close complete email has the comment from the previous email so it looks like a duplicate. Is there a way to prevent the comment notification from firing when the request is closed? I have tried every status field available in the condition builder to no avail. I am starting to think it will need to do an advanced script, but am not quite sure where to start since anything I can think of would reference the same fields in the condition builder.
I did try a search, but feel that I may be using the wrong criteria .
Thank you in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2016 07:50 AM
I figured it out! Had to use an advanced script, here is the code I used to stop the comment from firing when the request is closed.
if(current.request_item.request.active == 'true')
{answer = true;}
else
{answer = false;}
Seems so simple now that I see it . Thank you all for the input and help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2016 07:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2016 07:50 AM
I figured it out! Had to use an advanced script, here is the code I used to stop the comment from firing when the request is closed.
if(current.request_item.request.active == 'true')
{answer = true;}
else
{answer = false;}
Seems so simple now that I see it . Thank you all for the input and help.