REDROOM
PHP 8.3.30
Path:
Logout
Edit File
Size: 1.07 KB
Close
/home/getspomw/itechservicellc.com/app/Mail/InquiryNotification.php
Text
Base64
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Mail\Mailables\Content; use Illuminate\Mail\Mailables\Envelope; use Illuminate\Queue\SerializesModels; use App\Models\CustomerInquiry; class InquiryNotification extends Mailable { use Queueable, SerializesModels; public $inquiry; /** * Create a new message instance. */ public function __construct(CustomerInquiry $inquiry) { $this->inquiry = $inquiry; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'New Customer Inquiry' ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'emails.inquiry', with: [ 'inquiry' => $this->inquiry, ] ); } /** * Get the attachments for the message. */ public function attachments(): array { return []; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
InquiryNotification.php
1.07 KB
lrw-r--r--
2025-10-28 20:21:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
NewBlogMail.php
569 B
lrw-r--r--
2025-10-28 20:21:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SendOtpMail.php
491 B
lrw-r--r--
2025-10-28 20:21:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SubscriptionConfirmationMail.php
540 B
lrw-r--r--
2025-10-28 20:21:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
TestMail.php
1.11 KB
lrw-r--r--
2025-10-28 20:21:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).