data.struct.ta-actions.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Set>
  3. <ActionEmail id="1">
  4. <name>Incident 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></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;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 incident 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>Incident 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></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;priority$ has been assigned to you</subject>
  36. <body>&lt;html&gt;
  37. &lt;body&gt;
  38. &lt;p&gt;The incident 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>Incident 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></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;priority$ - $this-&gt;ticket_status$</subject>
  58. <body>&lt;html&gt;
  59. &lt;body&gt;
  60. &lt;p&gt;The incident ticket $this-&gt;name()$ has changed to status $this-&gt;ticket_status$&lt;/p&gt;
  61. &lt;p&gt;Current situation: $this-&gt;current_situation$&lt;/p&gt;
  62. &lt;p&gt;Last update: $this-&gt;last_update$&lt;/p&gt;
  63. &lt;hr/&gt;
  64. &lt;p&gt;for more information on this ticket, click here: $this-&gt;hyperlink()$&lt;/p&gt;
  65. &lt;/body&gt;
  66. &lt;/html&gt;</body>
  67. <importance>normal</importance>
  68. </ActionEmail>
  69. </Set>