<?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 Carbon\Carbon;
use App\Models\Livestream;
use App\Models\User;

class LivestreamTimeChanged extends Mailable
{
    use Queueable;
    use SerializesModels;

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

    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct(Livestream $livestream, Carbon $old_start_date, User $user, $url, $unregister_url)
    {
        $this->livestream = $livestream;
        $this->old_start_date = $old_start_date;
        $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 Time Changed',
        );
    }

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

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