- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 12:17 AM
Hi,
Is it possible to set sender in CC with email content?
I am trying to set notification as a task in a lifecycle event.
Regards,
Solved! Go to Solution.
- Labels:
-
Notifications

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 03:42 AM
Hi,
You need to create a email script and define the user you want to set as cc in email and then call the email script from the notification.
Steps to create Email Script and how to use:
- Navigate to the "Notification email Script" in the "System Notification" in filter navigator.
- Set the name of email notification "add_newusers_to_cc".
- add below code in the script:
email.addAddress("cc","email_address_of_the_user","Name_of_ther_user");
//if you want to push the user dynamically then you can use the scripting to validate and push the user.
4. Now navigate to the notification where you want to add cc.
5. add "${mail_script:add_newusers_to_cc}" in "Message HTML" field in "What it will contain" form section of notification.
Kindly mark my answer as Correct and helpful based on the Impact.
Regards,
Alok

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 12:20 AM
you can use email script here and then call email script in notification body.
sample code:
email.addAddress("cc","john.copy@example.com","John Roberts");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 02:27 AM
Hi,
Sorry for the rudimentary.
Where can I put the text?
Does that mean include it in the script?
Regards,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 02:32 AM
you will first create email script
email.addAddress() here you will define the person address which you wanna set in cc.
then you will use below line in email script and save that.
email.addAddress("cc","john.copy@example.com","John Roberts");
now go to your notification use email script in notification body
${mail_script:mail_script_name}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 02:36 AM