File: /var/www/html/orbidirectory.com/app/Mail/LeadSubmitted.php
<?php
namespace App\Mail;
use App\Models\OrbiLeads;
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 LeadSubmitted extends Mailable
{
use Queueable, SerializesModels;
public $orbiLeads;
/**
* Create a new message instance.
*/
public function __construct(OrbiLeads $orbiLeads)
{
$this->orbiLeads = $orbiLeads;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'Lead Submitted',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
return new Content(
view: 'emails.lead_submitted',
);
}
/**
* Get the attachments for the message.
*
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
*/
public function attachments(): array
{
return [];
}
}