62 lines
1.3 KiB
PHP
62 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class Add_Subadmin extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $mailData;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*/
|
|
public function __construct($mailData)
|
|
{
|
|
$this->mailData = $mailData;
|
|
}
|
|
|
|
/**
|
|
* Get the message envelope.
|
|
*/
|
|
// public function envelope(): Envelope
|
|
// {
|
|
// return new Envelope(
|
|
// subject: 'You add in subadmin ',
|
|
// );
|
|
// }
|
|
|
|
// /**
|
|
// * Get the message content definition.
|
|
// */
|
|
// public function content(): Content
|
|
// {
|
|
// return new Content(
|
|
// view: 'mail.subadmin',
|
|
// );
|
|
// }
|
|
|
|
// /**
|
|
// * Get the attachments for the message.
|
|
// *
|
|
// * @return array<int, \Illuminate\Mail\Mailables\Attachment>
|
|
// */
|
|
// public function attachments(): array
|
|
// {
|
|
// return [];
|
|
// }
|
|
|
|
public function build()
|
|
{
|
|
// $otp = $this->otp;
|
|
return $this->subject('OTP From Cheers to the Season')->view('mail.subadmin');
|
|
}
|
|
}
|