38 lines
692 B
PHP
38 lines
692 B
PHP
<?php
|
||
|
||
namespace App\Mail;
|
||
|
||
|
||
use Illuminate\Bus\Queueable;
|
||
use Illuminate\Mail\Mailable;
|
||
use Illuminate\Queue\SerializesModels;
|
||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
||
class FeedbackToAdmin extends Mailable
|
||
{
|
||
use Queueable, SerializesModels;
|
||
|
||
public $data;
|
||
public $subject = 'Сообщение с формы';
|
||
|
||
/**
|
||
* Create a new message instance.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function __construct(object $data)
|
||
{
|
||
$this->data = $data;
|
||
}
|
||
|
||
/**
|
||
* Build the message.
|
||
*
|
||
* @return $this
|
||
*/
|
||
public function build()
|
||
{
|
||
return $this->markdown('emails.admin.feedback', ['data' => $this->data]);
|
||
}
|
||
}
|