75 lines
770 B
PHP
75 lines
770 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
namespace App\Mail;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
use Illuminate\Bus\Queueable;
|
||
|
|
|
||
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
|
|
||
|
|
use Illuminate\Mail\Mailable;
|
||
|
|
|
||
|
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
class ReplyContactUsMail extends Mailable
|
||
|
|
|
||
|
|
{
|
||
|
|
|
||
|
|
use Queueable, SerializesModels;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
|
||
|
|
* Create a new message instance.
|
||
|
|
|
||
|
|
*
|
||
|
|
|
||
|
|
* @return void
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
protected $data;
|
||
|
|
|
||
|
|
public function __construct($data)
|
||
|
|
|
||
|
|
{
|
||
|
|
|
||
|
|
//
|
||
|
|
|
||
|
|
$this->data = $data;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
|
||
|
|
* Build the message.
|
||
|
|
|
||
|
|
*
|
||
|
|
|
||
|
|
* @return $this
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
public function build()
|
||
|
|
|
||
|
|
{
|
||
|
|
|
||
|
|
$data=$this->data;
|
||
|
|
|
||
|
|
// dd($data);
|
||
|
|
|
||
|
|
return $this->subject('Reply From Jericho Alternatives')->view('Admin.email.reply-mail-contactus',compact('data'));
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|