JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "SubscriptionVerification.php"
Full Path: /home/u703019046/domains/nawabs.com.au/public_html/app/Mail/SubscriptionVerification.php
File size: 726 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 SubscriptionVerification extends Mailable
{
use Queueable, SerializesModels;
public $template;
public $mail_subject;
public function __construct($template,$mail_subject)
{
$this->template=$template;
$this->mail_subject=$mail_subject;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
$template=$this->template;
return $this->subject($this->mail_subject)->view('frontend.subscription_verification_email',compact('template'));
}
}