- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2018 02:21 AM
Hello All,
I'm aware how to add a user on CC list in notification and hope that would be global to a table. would it be possble to restict this activity for only one notification?
I have craeted a system property :
email script:
var tableName = current.getTableName();
if(tableName== 'incident')
{
var emlid = gs.getProperty('outagenotification.cc');
if(emlid){
email.addAddress('cc', emlid);
}
}
for some reason this is not working and i want this to work for a single notification. any help?
Sowmya
Solved! Go to Solution.
- Labels:
-
Team Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2018 04:16 AM
HI Brother,
I will just to create a mail script and then in that mail script add below code:
email.addAddress("cc","email id","user name");
So that it will only for this specific notification where you use this mail script.
Dont do global change, it is not recommended.
Thanks,
Ashutosh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2018 04:02 AM
you need to call email script in your notification
${mail_script:emailscriptname}
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2018 04:16 AM
HI Brother,
I will just to create a mail script and then in that mail script add below code:
email.addAddress("cc","email id","user name");
So that it will only for this specific notification where you use this mail script.
Dont do global change, it is not recommended.
Thanks,
Ashutosh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2019 11:04 AM