Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/app/Mail/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/app/Mail/CustomEmail.php

<?php

namespace App\Mail;

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

class CustomEmail extends Mailable
{
    use Queueable, SerializesModels;

    public $subject;
    public $body;

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

    public function build()
    {
        return $this->subject($this->subject)
                    ->view('emails.custom_email_template')
                    ->with(['body' => $this->body]);
    }
}