/home/edulekha/crm.edulekha.com/application/libraries/mails/Invoice_payment_recorded_to_staff.php
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Invoice_payment_recorded_to_staff extends App_mail_template
{
protected $for = 'staff';
protected $staff_email;
protected $invoice;
protected $staffid;
protected $payment_pdf;
protected $payment_id;
public $slug = 'invoice-payment-recorded-to-staff';
public $rel_type = 'staff';
public function __construct($staff_email, $staffid, $invoice, $payment_pdf, $payment_id)
{
parent::__construct();
$this->staff_email = $staff_email;
$this->staffid = $staffid;
$this->invoice = $invoice;
$this->payment_pdf = $payment_pdf;
$this->payment_id = $payment_id;
}
public function build()
{
$this->add_attachment([
'attachment' => $this->payment_pdf,
'filename' => mb_strtoupper(slug_it(_l('payment') . '-' . $this->payment_id), 'UTF-8') . '.pdf',
'type' => 'application/pdf',
]);
$this->to($this->staff_email)
->set_rel_id($this->staffid)
->set_merge_fields('client_merge_fields',
$this->invoice->clientid,
!is_client_logged_in() ? '' : get_contact_user_id()
)
->set_merge_fields('invoice_merge_fields', $this->invoice->id, $this->payment_id);
}
}