# fluent-support/trunk/app/Hooks/Handlers/EmailNotificationHandler.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 529 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Hooks/Handlers/EmailNotificationHandler.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/app/Hooks/Handlers/EmailNotificationHandler.php
- Modified: 2026-09-15T14:15:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Hooks/Handlers/EmailNotificationHandler.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Hooks\Handlers;

use FluentSupport\App\App;
use FluentSupport\App\Models\Agent;
use FluentSupport\App\Models\Meta;
use FluentSupport\App\Models\Ticket;
use FluentSupport\App\Services\EmailNotification\Settings;
use FluentSupport\App\Services\Emogrifier;
use FluentSupport\App\Services\Helper;
use FluentSupport\App\Services\Mailer;
use FluentSupport\App\Services\Tickets\AgentTicketAccess;
use FluentSupport\Framework\Support\Arr;

class EmailNotificationHandler
{
    public function ticketCreated($ticket, $customer)
    {
        $mailbox = $ticket->mailbox;

        if (!$mailbox) {
            return;
        }

        // Let's send welcome email to customer if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_created_email_to_customer');

        if ($this->shouldSendEmail($emailSettings, 'ticket_created_email_to_customer', $ticket, $customer)) {
            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'business' => $mailbox,
                'ticket'   => $ticket
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_created_email_to_customer');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'ticket'     => $ticket,
                'email_type' => 'ticket_created_email_to_customer'
            ]);

            $headers = $mailbox->getMailerHeader();

            $headers = apply_filters('fluent_support/mail_to_customer_header', $headers, [
                'cc_email'  => $ticket->getSettingsValue('cc_email', []),
                'hook_type' => 'ticket_created_email_to_customer'
            ]);

            $attachments = [];

            if ($emailSettings['send_attachments'] == 'yes' && ($files = $ticket->attachments)) {
                foreach ($files as $file) {
                    if ($file->driver == 'local') {
                        $filePath = $file->file_path;
                    } else {
                        $filePath = Arr::get($file->settings, 'local_temp_path');
                    }
                    if (file_exists($filePath)) {
                        $attachments[] = $filePath;
                    }
                }
            }

            Mailer::send($customer->email, $subject, $emailBody, $headers, $attachments);
        }

        // let's send email to admin if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_created_email_to_admin');
        if ($this->shouldSendEmail($emailSettings, 'ticket_created_email_to_admin', $ticket, $customer)
            && is_email($mailbox->settings['admin_email_address'])
        ) {

            $mailTo = Arr::get($mailbox->settings, 'admin_email_address');

            if (!$mailTo || !is_email($mailTo)) {
                return;
            }

            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'business' => $mailbox,
                'ticket'   => $ticket
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_created_email_to_admin');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'ticket'     => $ticket,
                'email_type' => 'ticket_created_email_to_admin'
            ]);

            $headers = $mailbox->getMailerHeader();

            $attachments = [];

            if ($emailSettings['send_attachments'] == 'yes' && ($files = $ticket->attachments)) {
                foreach ($files as $file) {

                    if ($file->driver == 'local') {
                        $filePath = $file->file_path;
                    } else {
                        $filePath = Arr::get($file->settings, 'local_temp_path');
                    }
                    if (file_exists($filePath)) {
                        $attachments[] = $filePath;
                    }

                }
            }

            Mailer::send($mailTo, $subject, $emailBody, $headers, $attachments);
        }
    }

    public function agentReplied($response, $ticket, $agent)
    {
        $mailbox = $ticket->mailbox;


        if (!$mailbox) {
            return false;
        }

        // Let's send welcome email to customer if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_replied_by_agent_email_to_customer');


        if ($emailSettings && $emailSettings['status'] == 'yes') {

            $ticket->load('customer');
            $customer = $ticket->customer;

            if (!$customer->canReceiveNotifications()) {
                return false;
            }

            if (!$this->shouldSendEmail($emailSettings, 'ticket_replied_by_agent_email_to_customer', $ticket, $customer)) {
                return false;
            }

            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'business' => $mailbox,
                'ticket'   => $ticket,
                'response' => $response,
                'agent'    => $agent
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_replied_by_agent_email_to_customer');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'ticket'     => $ticket,
                'response'   => $response,
                'agent'      => $agent,
                'email_type' => 'ticket_replied_by_agent_email_to_customer'
            ]);


            $headers = $mailbox->getMailerHeader();
            $headers = apply_filters('fluent_support/mail_to_customer_header', $headers, [
                'cc_email'  => $response->getSettingsValue('cc_email', []),
                'hook_type' => 'ticket_replied_by_agent_email_to_customer'
            ]);
            $attachments = [];

            if ($emailSettings['send_attachments'] == 'yes' && ($files = $response->attachments)) {
                foreach ($files as $file) {
                    if ($file->driver == 'local') {
                        $filePath = $file->file_path;
                    } else {
                        $filePath = Arr::get($file->settings, 'local_temp_path');
                    }
                    if (file_exists($filePath)) {
                        $attachments[] = $filePath;
                    }
                }
            }

            Mailer::send($customer->email, $subject, $emailBody, $headers, $attachments);
        }
    }

    public function closedByAgent($ticket, $agent)
    {
        $mailbox = $ticket->mailbox;
        if (!$mailbox) {
            return;
        }

        // Let's send welcome email to customer if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_closed_by_agent_email_to_customer');
        if ($emailSettings && $emailSettings['status'] == 'yes') {

            $ticket->load('customer');
            $customer = $ticket->customer;

            if (!$customer->canReceiveNotifications()) {
                return false;
            }

            if (!$this->shouldSendEmail($emailSettings, 'ticket_closed_by_agent_email_to_customer', $ticket, $customer)) {
                return false;
            }

            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'business' => $mailbox,
                'ticket'   => $ticket,
                'agent'    => $agent,
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_closed_by_agent_email_to_customer');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'ticket'     => $ticket,
                'agent'      => $agent,
                'email_type' => 'ticket_closed_by_agent_email_to_customer'
            ]);

            $headers = $mailbox->getMailerHeader();
            $headers = apply_filters('fluent_support/mail_to_customer_header', $headers, [
                'cc_email'  => $ticket->getSettingsValue('cc_email', []),
                'hook_type' => 'ticket_closed_by_agent_email_to_customer'
            ]);
            Mailer::send($customer->email, $subject, $emailBody, $headers);
        }
    }

    public function customerReplied($response, $ticket, $customer)
    {
        $mailbox = $ticket->mailbox;
        if (!$mailbox) {
            return;
        }

        // Let's send welcome email to customer if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_replied_by_customer_email_to_admin');
        if ($this->shouldSendEmail($emailSettings, 'ticket_replied_by_customer_email_to_admin', $ticket, $customer)) {

            $ticket->load('agent');
            $agent = $ticket->agent;

            $emailTo = $mailbox->settings['admin_email_address'];
            if ($agent) {
                $emailTo = $agent->email;
            }

            if (!$emailTo || !is_email($emailTo)) {
                return;
            }

            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'business' => $mailbox,
                'ticket'   => $ticket,
                'response' => $response,
                'agent'    => $agent
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_replied_by_customer_email_to_admin');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'ticket'     => $ticket,
                'response'   => $response,
                'agent'      => $agent,
                'email_type' => 'ticket_replied_by_customer_email_to_admin'
            ]);

            $headers = $mailbox->getMailerHeader();
            $attachments = [];

            if ($emailSettings['send_attachments'] == 'yes' && ($files = $response->attachments)) {
                foreach ($files as $file) {
                    if ($file->driver == 'local') {
                        $filePath = $file->file_path;
                    } else {
                        $filePath = Arr::get($file->settings, 'local_temp_path');
                    }
                    if (file_exists($filePath)) {
                        $attachments[] = $filePath;
                    }
                }
            }

            Mailer::send($emailTo, $subject, $emailBody, $headers, $attachments);
        }
    }

    public function onAgentAssign(Agent $agent, Ticket $ticket, ?Agent $assigner = null)
    {
        if ($agent->status !== 'active' || (int) $ticket->agent_id !== (int) $agent->id) {
            return;
        }

        if (!(new AgentTicketAccess())->canAccess($agent, $ticket)) {
            return;
        }

        $currentUser = Helper::getAgentByUserId();

        if ($currentUser && $currentUser->user_id == $agent->user_id) {
            return;
        }

        $mailbox = $ticket->mailbox;

        if (!$mailbox) {
            return;
        }

        // Let's send notification email to agent if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_agent_on_change');

        if ($this->shouldSendEmail($emailSettings, 'ticket_agent_on_change', $ticket, $agent)) {

            if ($agent) {
                $emailTo = $agent->email;
            }

            if (!$emailTo || !is_email($emailTo)) {
                return;
            }

            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'business' => $mailbox,
                'ticket'   => $ticket,
                'agent'    => $agent,
                'assigner' => $assigner
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_agent_on_change');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'business'   => $mailbox,
                'ticket'     => $ticket,
                'agent'      => $agent,
                'assigner'   => $assigner,
                'email_type' => 'ticket_agent_on_change'
            ]);

            $headers = $mailbox->getMailerHeader();

            Mailer::send($emailTo, $subject, $emailBody, $headers);
        }
    }

    public function ticketCreatedByAgent($ticket, $customer, $agent)
    {
        $mailbox = $ticket->mailbox;

        if (!$mailbox) {
            return;
        }

        // Let's send welcome email to customer if enabled
        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_created_by_agent_email_to_customer');
        if ($this->shouldSendEmail($emailSettings, 'ticket_created_by_agent_email_to_customer', $ticket, $customer)) {
            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'agent'    => $agent,
                'business' => $mailbox,
                'ticket'   => $ticket
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_created_by_agent_email_to_customer');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'agent'      => $agent,
                'ticket'     => $ticket,
                'email_type' => 'ticket_created_by_agent_email_to_customer'
            ]);

            $headers = $mailbox->getMailerHeader();

            $attachments = [];

            if ($emailSettings['send_attachments'] == 'yes' && ($files = $ticket->attachments)) {
                foreach ($files as $file) {
                    if ($file->driver == 'local') {
                        $filePath = $file->file_path;
                    } else {
                        $filePath = Arr::get($file->settings, 'local_temp_path');
                    }
                    if (file_exists($filePath)) {
                        $attachments[] = $filePath;
                    }
                }
            }

            Mailer::send($customer->email, $subject, $emailBody, $headers, $attachments);
        }
    }

    public function ticketCreatedByAgentOnBehalf($response, $ticket, $agent)
    {
        $mailbox = $ticket->mailbox;

        if (!$mailbox) {
            return;
        }

        $emailSettings = (new Settings())->getBoxEmailSettings($mailbox, 'ticket_created_by_agent_on_behalf_email_to_customer');
        if ($this->shouldSendEmail($emailSettings, 'ticket_created_by_agent_on_behalf_email_to_customer', $ticket)) {

            $ticket->load('customer');
            $customer = $ticket->customer;

            if (!$customer->canReceiveNotifications()) {
                return false;
            }

            $subject = apply_filters('fluent_support/parse_smartcode_data', $emailSettings['email_subject'], [
                'customer' => $customer,
                'agent'    => $agent,
                'business' => $mailbox,
                'ticket'   => $ticket,
                'response' => $response
            ]);

            $subject = apply_filters('fluent_support/ticket_email_subject', $subject, $ticket, 'ticket_created_by_agent_on_behalf_email_to_customer');

            $emailBody = $this->parseEmailBody($emailSettings['email_body'], [
                'customer'   => $customer,
                'business'   => $mailbox,
                'agent'      => $agent,
                'ticket'     => $ticket,
                'response'   => $response,
                'email_type' => 'ticket_created_by_agent_on_behalf_email_to_customer'
            ]);

            $headers = $mailbox->getMailerHeader();

            $attachments = [];

            if ($emailSettings['send_attachments'] == 'yes') {
                $files = $response->attachments;

                // Agent-initiated ticket uploads are stored on the ticket, while this email
                // is rendered from the synthetic first response created during ticket creation.
                if ((!$files || $files->isEmpty()) && $ticket->attachments) {
                    $files = $ticket->attachments;
                }

                foreach ($files as $file) {
                    if ($file->driver == 'local') {
                        $filePath = $file->file_path;
                    } else {
                        $filePath = Arr::get($file->settings, 'local_temp_path');
                    }
                    if (file_exists($filePath)) {
                        $attachments[] = $filePath;
                    }
                }
            }

            Mailer::send($customer->email, $subject, $emailBody, $headers, $attachments);
        }
    }

    private function emailTemplateCss()
    {
        $app = App::getInstance();
        return $app->view->make('emails.styles');
    }

    protected function parseEmailBody($emailBody, $data)
    {
        $data['email_body'] = apply_filters('fluent_support/parse_smartcode_data', $emailBody, $data);

        $app = App::getInstance();

        if (isset($data['business'])) {
            $businessName = $data['business']->name;
        } else {
            $businessName = get_bloginfo('name');
        }

        $footerCreditUrl = Helper::getUpgradeUrl('mail_footer', ['base_url' => 'https://fluentsupport.com/']);
        $footerText = apply_filters('fluent_support/email_footer_credit', 'This email is a service from ' . $businessName . '. Support Plugin is Powered by <a href="' . esc_url($footerCreditUrl) . '" style="color:#9e9e9e;" target="_new">FluentSupport</a>.');

        $data['email_footer'] = $footerText;

        $emailTypeForCustomerFooter = ['ticket_created_email_to_customer', 'ticket_replied_by_agent_email_to_customer', 'ticket_closed_by_agent_email_to_customer'];

        if (defined('FLUENTSUPPORTPRO') && in_array($data['email_type'], $emailTypeForCustomerFooter)
            && !is_null($data['business']->email_footer)) {
            $data['email_footer'] = apply_filters('fluent_support/parse_smartcode_data', $data['business']->email_footer, $data);
        }

        $emailBody = $app->view->make('emails.ticket_template', $data);
        $emogrifier = new Emogrifier($emailBody, $this->emailTemplateCss());
        $emogrifier->disableInvisibleNodeRemoval();
        return $emogrifier->emogrify();
    }

    protected function shouldSendEmail($emailSettings, $emailType, $ticket, $person = null)
    {
        if (!$emailSettings || $emailSettings['status'] != 'yes') {
            return false;
        }

        return apply_filters('fluent_support/should_send_notification', true, 'email', $emailType, $ticket, $person);
    }

    public function getMailerHeaderWithCc($headers, $info)
    {
        if (isset($info['cc_email'])) {
            $CcHeaders = !empty($info['cc_email']) && is_array($info['cc_email']) ? implode(', ', $info['cc_email']) : '';
            $headers[] = $CcHeaders ? "Cc: $CcHeaders" : '';
        }

        return $headers;
    }

}

```
