| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/wit-crm/application/libraries/mails/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
include_once(APPPATH . 'libraries/mails/traits/TicketTemplate.php');
class Ticket_autoresponse extends App_mail_template
{
use TicketTemplate;
protected $for = 'customer';
protected $ticket;
protected $email;
protected $ticketid;
protected $ticket_attachments;
public $slug = 'ticket-autoresponse';
public $rel_type = 'ticket';
public function __construct($ticket, $email, $ticket_attachments, $cc)
{
parent::__construct();
$this->ticket = $ticket;
$this->email = $email;
$this->ticketid = $ticket->ticketid;
$this->ticket_attachments = $ticket_attachments;
$this->cc = $cc;
}
public function build()
{
$this->add_ticket_attachments();
$this->to($this->email)
->set_rel_id($this->ticket->ticketid)
->set_merge_fields('client_merge_fields', $this->ticket->userid, $this->ticket->contactid)
->set_merge_fields('ticket_merge_fields', $this->slug, $this->ticket->ticketid);
}
}