<?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;

use App\Models\Livestream;
use App\Models\User;

class LivestreamReminder extends Mailable
{
    use Queueable;
    use SerializesModels;

    public $livestream;
    public $user;
    public $url;
    public $unregister_url;

    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct(Livestream $livestream, User $user, $url, $unregister_url)
    {
        $this->livestream = $livestream;
        $this->user = $user;
        $this->url = $url;
        $this->unregister_url = $unregister_url;
    }

    /**
     * Get the message envelope.
     *
     * @return \Illuminate\Mail\Mailables\Envelope
     */
    public function envelope()
    {
        return new Envelope(
            subject: 'Livestream Reminder',
        );
    }

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

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