email = $email; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'You have been unsubscribed', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.user.subscription_unsubscribed', text: 'emails.user.subscription_unsubscribed_plain', ); } }