- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2018 11:29 AM
Is it possible to make two different UI actions which put different values in the TO field on the Case email client?
I know that there is one email client template per table, but I have attempted to work around this by creating a UI action which sets a field and then opens the email client, where the template is reading that field. However I'm having trouble combining the server-side code with client side and then opening the email client on top of that.
Thanks for your help.
Solved! Go to Solution.
- Labels:
-
Customer Service Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-13-2018 06:22 PM
Use the solution provided in below thread
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2018 11:49 AM
The second solution is actually what I'm attempting now, but I'm having trouble coming up with UI action code which can both set custom field and open the email client. I will look into quick messages though.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2018 11:56 AM
You can try g_form.setValue('custom field',new recipient) and g_form.save() and then call emailClientOpenpop('your_table_name')
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 07:36 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 10:59 AM
Try this instead
g_form.setValue('u_destination_email',current.customer_email);
emailClientOpenPop(this,'sn_customerservice_case');
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-03-2018 09:37 AM
Please close the thread my marking the above response correct if it worked for you
Please mark this response as correct or helpful if it assisted you with your question.