39 lines
797 B
PHP
39 lines
797 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
class SendMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $data;
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
// return $this->view('view.name');
|
|
return $this->from('turkmentv.gov.tm@gmail.com ')->
|
|
subject('Turkmen Tv / Contact Form')->
|
|
view('email_temp')->
|
|
with('data', $this->data);
|
|
}
|
|
}
|