I'm building a ticketsystem which creates tickets from incoming email automatically. The workflow look's like this:
- User send's a email to
support@yourname.xyz
- The System creates a new ticket
- A Team member answers to the ticket via a Dashboard
- The User get a notification with the answer per email
Now I wan't to give the user the option to answer the ticket by reply to the email from step 4. But how can I assing the reply to a ticket?
Sometimes I saw solutions where the ticket id is stored in the header. The subject looks then like [#12345] Your Request
But is there a better way to store the ticket id so the user can't see it? When I set a header variable on the email sent in Step 4, the varibale won't be included in the reply from the user.
Dose anyone have a soulution for this problem?