
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2015 01:23 PM
We have a need to send an email notification to an email address that is entered into a field on a record producer as a string. Not sure how to do this.
The record producer form has a string field for 'email address.' The workflow needs to be able to send an email to the value in this field. I am not able to use a notification activity because I cannot use a string field in the To: field. I am wondering if I can somehow pass that variable value into Parameter 1 of a Create Event activity.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-08-2015 01:37 PM
This can be done with a Run Script activity, not requiring Orchestration. I just had to assign the variable correctly...
=====================================
var eventParm1 = current.variables.u_email;
gs.eventQueue("request.application.support", current, eventParm1);
=======================================
Thank you for your help. You led me in the right direction.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2015 05:16 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2015 07:04 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-19-2015 07:21 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-24-2015 10:15 AM