Files
cheerstothe_season_2.0/app/Mail/AdminPasswordResetEmail.php

62 lines
1.3 KiB
PHP
Raw Normal View History

2024-05-23 16:41:29 +05:30
<?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 AdminPasswordResetEmail extends Mailable
{
use Queueable, SerializesModels;
public $data;
/**
* Create a new message instance.
*/
public function __construct($data)
{
$this->data = $data;
}
/**
* Get the message envelope.
*/
// public function envelope(): Envelope
// {
// return new Envelope(
// subject: 'Admin Password Reset Email',
// );
// }
// /**
// * Get the message content definition.
// */
// public function content(): Content
// {
// return new Content(
// view: 'admin.pages.mail.send_otp',
// );
// }
public function build()
{
$otp = $this->data;
return $this->subject('Mail from Cheers To Seasons')
->view('Admin.pages.mail.send_otp', ["content" => $otp]);
}
/**
* Get the attachments for the message.
*
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
*/
public function attachments(): array
{
return [];
}
}