JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "SubscirberSendMail.php"

Full Path: /home/u703019046/domains/nawabs.com.au/public_html/app/Mail/SubscirberSendMail.php
File size: 702 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

class SubscirberSendMail extends Mailable
{
    use Queueable, SerializesModels;

    public $subject;
    public $template;
    public function __construct($subject, $template)
    {
        $this->subject = $subject;
        $this->template = $template;
    }

    public function build()
    {
        $subject = $this->subject;
        $template = $this->template;

        return $this->subject($this->subject)->view('admin.send_subscriber_email_template',compact('template','subject'));
    }
}