Files
site/app/Mail/FeedbackToAdmin.php

38 lines
692 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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]);
}
}