How to Get Email Notification When a Client Open Support Ticket

Upmind is an extremely customisable application with dozens of triggers all configurable for different products. For example, if you'd like to receive a notification when a client opens a support ticket, follow these steps:

  1. Go to Settings and navigate to Triggers.
  2. Click on Add Action.
  3. Enter the name of the trigger and choose the channel for receiving notifications (e.g: Email).
  4. Select "Ticket" as the Category.
  5. Choose "New Ticket Opened by Client" as the trigger based on your requirements.
  6. Under "Who do you want to notify," select "Staff."
599
  1. Fill in the Email Headers (Optional)
  2. Fill in the Subject and Body of the email using Twig syntax, which is available for customization.
  3. Hit the "Save" button.
599

Avoiding Array Data

📘

Notes

When you're using Twig Syntax and the result displays ”Array” it indicates that some data is missing, and you might need to add the object. For example, {{ ticket.client }} should be {{ ticket.client.full_name }}.

Therefore, you must specify which client details you want to include. Here are some examples of customizations that may be helpful in avoiding "Array" errors.

599