- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2019 09:29 AM
I sent a reply email from the email client and not seeing it in the activities. Could this be because of the client template that is being used?
Table for case is sn_hr_core_case_relations
I have the glide.ui16.emailStreamResponseActions set to true so that the reply buttons are available.
Here is the client template being used:
If I use the email link to send an email there are no issues. Any ideas why I can't see the sent email?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2019 08:29 AM
Hello,
I believe KB0684027 - "Email created through Reply/Reply All functionality via glide.ui16.emailStreamResponseA..." specifically addresses this issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2019 08:29 AM
Hello,
I believe KB0684027 - "Email created through Reply/Reply All functionality via glide.ui16.emailStreamResponseA..." specifically addresses this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2019 06:15 AM
Thank you. I tried applying the fix but initially had issues. I'm good now. Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2020 06:48 AM
Hi Randy,
I would like to set reply to field for email client template, as I see in your screenshot you added some script include on reply to , could you please let me know how you have acheived this?
Thankyou
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2020 02:53 AM
Here is the script I use:
var setReplyTo = Class.create();
setReplyTo.prototype = {
initialize: function() {
},
setAddress: function(){
var replyEmailAddress = '';
if (current.target_table == 'sn_hr_core_case_relations'){
replyEmailAddress = 'Employee Relations <employeerelations@company_name.com>';
}
return replyEmailAddress;
},
type: 'setReplyTo'
};