<?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\Mail\Mailables\Address;
use Illuminate\Queue\SerializesModels;

use Illuminate\Support\Collection;
use App\Models\Inquiry;

class InquiryConfirmation extends Mailable
{
    use Queueable;
    use SerializesModels;

    public $inquiry;
    public $livestream_registrations;
    public $reply_to;

    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct(Inquiry $inquiry, Collection $livestream_registrations = null, $reply_to = null)
    {
        $this->inquiry = $inquiry;
        $this->livestream_registrations = $livestream_registrations;
        $this->reply_to = $reply_to;
    }

    /**
     * Get the message envelope.
     *
     * @return \Illuminate\Mail\Mailables\Envelope
     */
    public function envelope()
    {
        return new Envelope(
            replyTo: [
                new Address($this->reply_to ?? 'welcome@brentwood.bc.ca', 'Brentwood College School'),
            ],
            subject: 'Inquiry Confirmation',
        );
    }

    /**
     * Get the message content definition.
     *
     * @return \Illuminate\Mail\Mailables\Content
     */
    public function content()
    {
        return new Content(
            markdown: 'emails.inquiries.confirmation',
        );
    }

    /**
     * Get the attachments for the message.
     *
     * @return array
     */
    public function attachments()
    {
        return [];
    }
}
