How to add a variable from variable set to cc of email notification
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-03-2022 03:41 PM
I have a requirement where i need to get the value of a variable in variable set of service catalog and add the value to cc of the email notification. the value is entered to the variable in record producer.
So, basically the "cc" of the notification should have the email id entered via record producer form in the field "personal email" this is a variable which is part of a variable set
Can anyone have solution on how to configure this
Thankyou for all your help in advance
- Labels:
-
Notifications
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-03-2022 04:40 PM
Hi,
Please see this article for assistance with MVRS and getting that data in notification:
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 07:27 PM
the document only shows hoe to display it. How to add those variables to cc of notification

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2022 12:17 PM
Hi,
The point I was getting at is that you need to access those values from the MVRS. The link I gave shows how to access it. Once you've accessed it within the mail script, you can then add it to your CC.
email.addAddress("cc", 'email_address', 'display_name_if_applicable');
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 08:04 PM
Get the mrvs each row using getRow();
and use for loop the add the users
Syntax of adding users in cc
email.addAddress("cc",mail,displaynameoftheuser);
Write the above logic in mail script and call it in your Notification using ${mail_sctipt:MailscriptName}
Hope it helps
Thanks,
Murthy
Murthy