Incident Notification to a Workgroup This action informs a team that a ticket has been assigned their workgroup disabled SELECT bizTeam AS t JOIN bizWorkgroup AS w ON w.team_id = t.id WHERE w.id=:this->workgroup_id The ticket $this->name()$, severity $this->severity$ has been assigned to the workgroup $this->workgroup_name$ <html> <body> <p>The incident ticket $this->name()$ has been assigned to the workgroup $this->workgroup_name$.</p> <p>Description: $this->title$</p> <p>Initial Situation: $this->initial_situation$</p> <hr/> <p>for more information on this ticket, click here: $this->hyperlink()$</p> </body> </html> normal Incident notification to Agent This action informs an agent that a ticket has been assigned to her/him disabled SELECT bizPerson WHERE id=:this->agent_id The ticket $this->name()$, severity $this->severity$ has been assigned to you <html> <body> <p>The incident ticket $this->name()$ has been assigned to you.</p> <p>Description: $this->title$</p> <p>Initial Situation: $this->initial_situation$</p> <hr/> <p>for more information on this ticket, click here: $this->hyperlink()$</p> </body> </html> normal Incident Notification to caller This action is used to inform the caller disabled SELECT bizPerson WHERE id=:this->caller_id Ticket $this->name()$, severity $this->severity$ - $this->ticket_status$ <html> <body> <p>The incident ticket $this->name()$ has changed to status $this->ticket_status$</p> <p>Current situation: $this->current_situation$</p> <p>Last update: $this->last_update$</p> <hr/> <p>for more information on this ticket, click here: $this->hyperlink()$</p> </body> </html> normal