24 lines
519 B
PHP
24 lines
519 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class FeedbackSender extends Mailable implements ShouldQueue {
|
|
use Queueable, SerializesModels;
|
|
|
|
//public array $data;
|
|
|
|
public function __construct() {
|
|
//$this->data = $data;
|
|
}
|
|
|
|
public function build() {
|
|
return $this->subject('Сообщение из обратной связи');
|
|
}
|
|
}
|