The default formatting for Zendesk Support emails is nice if you're setup as a ticketing system. But what if you want your replies to look like a response from a normal person who writes plainly without formatting? Removing the extra formatting can be a hurdle. We hope to simplify this process for you today!
Changing a formatted email to an unformatted one is as easy as making a few changes in your Zendesk Support settings. For example, you can take an email that looks like this:
and change it to something like this:
Step 1: Update your triggers
By default, your triggers send out all the comments made in a ticket, separated by formatting. We'll work through deactivating unwanted notifications and removing the extra formatting.
Deactivate the "Notify Requester and CCs of Received Request" trigger
An email interaction starts when a user first sends an email. A default trigger in Zendesk Support sends a response telling the customer that the system has received their request. You probably want to disable this trigger if you want your email responses to look personal.
To deactivate the trigger
- Go to Admin > Business Rules > Triggers .
- Hover your mouse over the "Notify Requester and CCs of Received Request" trigger to display the options menu icon (
).
- Move your mouse over the options menu icon and select Deactivate, then confirm the deactivation.
Remove the formatting from the rest of your triggers
With the "Notify Requester and CCs of Received Request" trigger deactivated, you should have one or two remaining triggers that send email to your end-users. One is "Notify requester and CCs of comment update. " If you have an older account, the other one is "Notify requester of solved request." If you added other custom notification triggers that send email to requesters, you'll want to modify them too to get rid of the formatting.
To remove the formatting from outgoing emails from your remaining triggers
- Go to Admin > Business Rules > Triggers.
- Locate one of the remaining notification triggers and open the options menu as described above, then select Edit.
- In the email template in the Perform these Actions section, clear the Email Subject field and enter {{ticket.title}} instead. The {{ticket.title}} placeholder adds the subject of the original email to your response. If you like, you can preface it with "Re: ".
- Next, delete the email body and replace it with the following Liquid Markup syntax:
{% for comment in ticket.comments limit:1 offset:0 %}
This code takes the text of the last comment added to the ticket without any extra formatting. Be sure to add this to the top line of the trigger email body or the extra space will show up in your outgoing emails.
{{comment.value_rich}}
{% for attachment in comment.attachments %}
{{attachment.filename}}
{{attachment.url}}
{% endfor %}
{% endfor %} - Review your work. Your trigger action should look something like the following:
- If everything looks good, click Save.
Step 2: Update your follower notifications
If you have ticket followers enabled, followers receive notifications that are formatted in a way that's very similar to how triggers were set up originally. You'll need to edit this as well.
To change the follower notification template
- Go to Admin > Settings > Tickets .
- In the CCs and followers section, find the Follower email template. If followers are not enabled for your tickets, you will not see this field.
- Paste the same Liquid Markup code that you added to your triggers:
{% for comment in ticket.comments limit:1 offset:0 %}
{{comment.value_rich}}
{% for attachment in comment.attachments %}
{{attachment.filename}}
{{attachment.url}}
{% endfor %}
{% endfor %} - Click Save tab.
Step 3: Update your email template
There's one other place that affects the formatting of your outgoing emails: your overall email template. This template is applied to all outgoing emails from your Zendesk account.
To remove the formatting from the email template
- Go to Admin > Channels > Email .
If you still have the default template, it should look as follows. If you have customized the template, you can click Revert to Default to get it back. - Remove the following elements:
- the {{footer}} placeholder
- the {{footer_link}} placeholder
- any extra text or links left in the box.
- the email delimiter
(Open image in new tab to enlarge)Leave the {{content}} placeholder in the template. It populates the email with the comments you add.
- Remove the entire line immediately below and above the {{footer}} placeholder. This <div style...> code adds a line break to the email.
For more information on what each of these placeholders do and how to customize the template, see Customizing your email templates.
Step 4: Change the "From" field
Finally, if you want to change the sender specified in the "From" line, you can to go back to Admin > Channels > Email . There are two places where you can change this.
First, you may want to set up a support address to customize what email address your end-users use to send requests. Otherwise you'll be communicating with your customers with a "@[subdomain].zendesk.com" address. To set up your own email to forward emails into Zendesk Support and then send emails out at that same address, you'll need to configure your external email address appropriately. For instructions, see Using an external email domain .
After setting up the email you want to use, you'll want to take a look at your support addresses. Make sure they're configured like you want them. You can remove any mention of the company after the agent's name by removing it in your Support Address options. For more information, see Adding support addresses for users to submit tickets.
Next, you'll want to check out the Personalized Email Replies option. When enabled, the "From" field includes the name of the agent making the comment on the ticket. This replaces your company name in your responses.
Congratulations! You removed all formatting from your ticket email notifications. You can now have smooth email conversations without your customers knowing that you're using Zendesk Support. How sly!
37 Comments
Thanks for sharing that, Andrew!
This is a great article. One question, is there a way I can force Zendesk to only send plain text email notifications by default?
Hey everyone,
I'm curious to know how to do the opposite. We'd like to return to Zendesk's formatted emails (our account is currently set up with unformatted emails). Any advice?
Thanks in advance :)
Is there a way to add the agent signature to this? I have been messing around with it and have not found a way to add it.
Hey Arsenio,
By default there should be an agent signature placeholder included under Admin>Settings>Agents. More information here: Adding an agent signature
Let me know if that doesn't get you the results you're looking for!
Thanks for the information.
Like a previous user, I see that this solution only gives me the latest comment, removing all previous comments.
How can I add in the previous comments, such that each previous comment is only shown once? I seem to only have 2 options:
- only have the latest comment
- have all previous comments, repeating, as each 'previous comment' also includes the ones before it
Thank you
Follow the same steps from the article, only remove the limit and offset.
Please sign in to leave a comment.