43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
class SupportMailManager extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public $array;
|
|
|
|
public function __construct($array)
|
|
{
|
|
$this->array = $array;
|
|
}
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
// dd($array);
|
|
return $this->view($this->array['view'])
|
|
->from($this->array['from'], env('MAIL_FROM_NAME'))
|
|
->subject($this->array['subject'])
|
|
->with([
|
|
'content' => $this->array['content'],
|
|
'link' => $this->array['link'],
|
|
'sender' => $this->array['sender'],
|
|
'details' => $this->array['details']
|
|
]);
|
|
}
|
|
}
|