38 lines
690 B
38 lines
690 B
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Mail;
|
||
|
|
||
|
use Illuminate\Bus\Queueable;
|
||
|
use Illuminate\Mail\Mailable;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
class CustomerRegistration extends Mailable
|
||
|
{
|
||
|
use Queueable, SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* Create a new message instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
|
||
|
protected $name;
|
||
|
protected $type;
|
||
|
|
||
|
public function __construct($name, $type=false)
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
$this->type = $type;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Build the message.
|
||
|
*
|
||
|
* @return $this
|
||
|
*/
|
||
|
public function build()
|
||
|
{
|
||
|
return $this->view('email-templates.customer-registration')->with(['name'=>$this->name,'type'=>$this->type]);
|
||
|
}
|
||
|
}
|