data.struct.ta-actions.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Set>
  3. <ActionEmail id="1">
  4. <name>Notification to a Workgroup</name>
  5. <description>This action informs a team that a ticket has been assigned their workgroup</description>
  6. <status>disabled</status>
  7. <test_recipient></test_recipient>
  8. <from>test@test.com</from>
  9. <reply_to></reply_to>
  10. <to>SELECT Team WHERE id=:this-&gt;workgroup_id</to>
  11. <cc></cc>
  12. <bcc></bcc>
  13. <subject>The ticket $this-&gt;name()$, priority $this-&gt;label(priority)$ has been assigned to the workgroup $this-&gt;workgroup_name$</subject>
  14. <body>&lt;html&gt;
  15. &lt;body&gt;
  16. &lt;p&gt;The ticket $this-&gt;name()$ has been assigned to the workgroup $this-&gt;workgroup_name$.&lt;/p&gt;
  17. &lt;p&gt;Description: $this-&gt;title$&lt;/p&gt;
  18. &lt;p&gt;Title: $this-&gt;title$&lt;/p&gt;
  19. &lt;hr/&gt;
  20. &lt;p&gt;for more information on this ticket, click here: $this-&gt;hyperlink()$&lt;/p&gt;
  21. &lt;/body&gt;
  22. &lt;/html&gt;</body>
  23. <importance>normal</importance>
  24. </ActionEmail>
  25. <ActionEmail id="2">
  26. <name>Notification to Agent</name>
  27. <description>This action informs an agent that a ticket has been assigned to her/him</description>
  28. <status>disabled</status>
  29. <test_recipient></test_recipient>
  30. <from>test@test.com</from>
  31. <reply_to></reply_to>
  32. <to>SELECT Person WHERE id=:this-&gt;agent_id</to>
  33. <cc></cc>
  34. <bcc></bcc>
  35. <subject>The ticket $this-&gt;name()$, priority $this-&gt;label(priority)$ has been assigned to you</subject>
  36. <body>&lt;html&gt;
  37. &lt;body&gt;
  38. &lt;p&gt;The ticket $this-&gt;name()$ has been assigned to you.&lt;/p&gt;
  39. &lt;p&gt;Description: $this-&gt;title$&lt;/p&gt;
  40. &lt;p&gt;Title: $this-&gt;title$&lt;/p&gt;
  41. &lt;hr/&gt;
  42. &lt;p&gt;for more information on this ticket, click here: $this-&gt;hyperlink()$&lt;/p&gt;
  43. &lt;/body&gt;
  44. &lt;/html&gt;</body>
  45. <importance>normal</importance>
  46. </ActionEmail>
  47. <ActionEmail id="3">
  48. <name>Notification to caller</name>
  49. <description>This action is used to inform the caller</description>
  50. <status>disabled</status>
  51. <test_recipient></test_recipient>
  52. <from>test@test.com</from>
  53. <reply_to></reply_to>
  54. <to>SELECT Person WHERE id=:this-&gt;caller_id</to>
  55. <cc></cc>
  56. <bcc></bcc>
  57. <subject>Ticket $this-&gt;name()$, priority $this-&gt;label(priority)$ - $this-&gt;status$</subject>
  58. <body>&lt;html&gt;
  59. &lt;body&gt;
  60. &lt;p&gt;The ticket $this-&gt;name()$ has changed to status $this-&gt;status$&lt;/p&gt;
  61. &lt;p&gt;Last update: $this-&gt;last_update$&lt;/p&gt;
  62. &lt;hr/&gt;
  63. &lt;p&gt;for more information on this ticket, click here: $this-&gt;hyperlink(portal)$&lt;/p&gt;
  64. &lt;/body&gt;
  65. &lt;/html&gt;</body>
  66. <importance>normal</importance>
  67. </ActionEmail>
  68. </Set>