Sindbad~EG File Manager

Current Path : /home/copmadinaarea/drive.copmadinaarea.org/common/Mail/
Upload File :
Current File : /home/copmadinaarea/drive.copmadinaarea.org/common/Mail/ConfirmEmail.php

<?php namespace Common\Mail;

use App;
use Common\Settings\Settings;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Common\Mail\MailTemplates;
use Illuminate\Queue\SerializesModels;

class ConfirmEmail extends Mailable
{
    use Queueable, SerializesModels;

    /**
     * @var string
     */
    public $siteName;

    /**
     * @var string
     */
    public $emailAddress;

    /**
     * @var string
     */
    public $code;

    /**
     * Create a new message instance.
     * @param $emailAddress
     * @param $code
     */
    public function __construct($emailAddress, $code)
    {
        $this->emailAddress = $emailAddress;
        $this->siteName = App::make(Settings::class)->get('branding.site_name');
        $this->code = $code;
    }

    /**
     * Build the message.
     *
     * @return $this
     */
    public function build()
    {
        $template = App::make(MailTemplates::class)->getByAction('email_confirmation',
            ['site_name' => $this->siteName]
        );

        return $this->to($this->emailAddress)
            ->subject($template['subject'])
            ->view($template['html_view'])
            ->text($template['plain_view']);
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists