Footer for emails in ticket replies

When an agent replies to a ticket, then the footer of the email contains the following text:.

You can reply to this email directly.

To change the text, you need to follow these steps:

  1. Go to Settings > Mailboxes.

  2. Click on the Mailbox Configuration button.

  3. Enable the Tickets email footer option.

  4. Make the desired changes.

  5. Click on save changes.

Remove

Here are the steps to remove the footer:

  1. Go to Settings > Mailboxes.

  2. Click on the Mailbox Configuration button.

  3. Turn off the toggle next to the Tickets email footer.

  4. Click on save changes.

Supported Variables

In addition to the ticket placeholder variables, you will have the following variables for the receiver of the email:.

Please be advised that the receiver variable will not always be available.

Receiver

Attribute

Type

Usage

id

String

{{ receiver.id }}

email

String

{{ receiver.email }}

name

String

{{ receiver.name }}

first_name

String

{{ receiver.first_name }}

last_name

String

{{ receiver.last_name }}

subcriber_type

String

{{ receiver.subcriber_type }}

Subscriber Types:

  1. subscriber The user is subscribed to the ticket. The user is marked as a subscriber when the ticket's assignment changes.

  2. requester -The user has requested/authored the ticket.

  3. submitter - The user has created the ticket on behalf of the requester.

  4. assigned - Ticket is assigned to the user.

  5. mentioned - User is mentioned on the ticket.

  6. commented - The user has commented on the ticket.

Example

To add a footer like this:

—
You are receiving this because you were assigned.
Reply to this email directly, or view it on neetoDesk!

You can use the following code:

—

{% case receiver.subscriber_type %}
{% when 'subscriber' %}
You are receiving this because you are subscribed.
{% when 'requester', 'submitter' %}
You are receiving this because you authored the thread.
{% when 'assigned' %}
You are receiving this because you were assigned.
{% when 'mentioned' %}
You are receiving this because you were mentioned.
{% when 'commented' %}
You are receiving this because you commented.
{% endcase %}
Reply to this email directly to continue the conversation.