JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "UserRegistration.php"
Full Path: /home/u703019046/domains/nawabs.com.au/public_html/app/Mail/UserRegistration.php
File size: 710 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 UserRegistration 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.auth.user_verify_mail', compact('template'));
}
}