You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
711 B
PHP
35 lines
711 B
PHP
<?php
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class InqueryAnswerMailable 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->from('mailer-daemon@dowajwo.com', '도와줘')
|
|
->subject("도와줘 홈페이지에 남겨주신 문의 답변입니다.")
|
|
->view('emails.inqeury-page-answer');
|
|
}
|
|
}
|