<?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; class denyUser extends Mailable { use Queueable, SerializesModels; public $content; /** * Create a new message instance. */ public function __construct($content) { $this->content = $content; } /** * Get the message envelope. */ // public function envelope(): Envelope // { // return new Envelope( // subject: 'Deny User', // ); // } /** * Get the message content definition. */ // public function content(): Content // { // return new Content( // view: 'view.name', // ); // } /** * Get the attachments for the message. * * @return array<int, \Illuminate\Mail\Mailables\Attachment> */ // public function attachments(): array // { // return []; // } public function build(){ return $this->subject('Pendaftaran Akun Gagal')->view('email.deny-user-email'); } }