- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 05:29 AM
Hi I am using this to add email address in cc of notification activity
<mail_script>
email.addAddress("cc", 'test@gmail.com' );
</mail_script>
The following are the details of the requester
Requester = ${current.variables.requested_for}
Email Address of Requester = ${current.variables.email_address}
but I want add the cc as ${current.variables.email_address} but that is not working.why?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 08:06 AM
this works
<mail_script>
var email = current.variables.email_address.toString();
email.addAddress("cc", email);
</mail_script>
The following are the details of the requester
Requester = ${current.variables.requested_for}
Email Address of Requester = ${current.variables.email_address}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 08:06 AM
this works
<mail_script>
var email = current.variables.email_address.toString();
email.addAddress("cc", email);
</mail_script>
The following are the details of the requester
Requester = ${current.variables.requested_for}
Email Address of Requester = ${current.variables.email_address}