Recent searches
No recent searches
Remove/Update the "Account Name" displaying after Agent's name
Answered
Posted Oct 01, 2018
Hi there,
In the body of response emails, our Agents' names are followed by our account name in parenthesis. For example, "Joe Hero (Awesome Co.)" would appear next to each response from the Agent, Joe.
I'd like to be able to either hide the company name (Awesome Co.) or modify it based on certain parameters (group? brand? etc).
Thanks,
William
0
4
4 comments
Heather Rommel
Hi! You can change the name altogether at this setting here under Settings -> Account -> Branding. Other than this and updating your trigger emails, I am not aware of a way to make it Dynamic or conditional.
0
William Flaugher
Thanks for the feedback, Heather. I see that you can choose one universal name to appear after the Agents, but it would be really helpful if we could have this name change for different cohorts of customers.
As far as triggers are concerned, however, I don't believe you can change the displayed account name in different wants through triggers. The agent and account names appear by default.
0
Stephen Belleau
@William - you can achieve finer control over what displays in your outbound emails by using Liquid Markup in triggers: https://support.zendesk.com/hc/en-us/articles/115015758148 This removes the default zendesk formatting, including timestamp and agent/company name.
For example, we use the following to only show the latest comment, and then we cloned our triggers to have one for each group, allowing for different signatures/branding per group.
{% for comment in ticket.comments limit:1 offset:0 %}
{{comment.value_rich}}{{current_user.first_name}}
Group1/2/3 Support
{% endfor %}
Play around with it and see if that works for you!
0
William Flaugher
Thanks a lot for the tip, Stephen! I'll check it out!
0