PATH:
home
/
rwabteecom
/
public_html
/
app
/
Mail
/
Editing: PlanExpirationReminder.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Illuminate\Mail\Mailables\Envelope; use Illuminate\Mail\Mailables\Content; use App\Models\User; class PlanExpirationReminder extends Mailable { use Queueable, SerializesModels; public $data; public function __construct($data) { $this->data = $data; } public function envelope(): Envelope { return new Envelope( subject: 'Plan Expiration Reminder', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'emails.plan_expiration_reminder', ); } /** * Get the attachments for the message. * * @return array<int, \Illuminate\Mail\Mailables\Attachment> */ public function attachments(): array { return []; } }
SAVE
CANCEL