123456789101112131415161718192021222324252627282930313233343536 |
- <?php
-
- namespace App\Mail;
-
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Mail\Mailable;
- use Illuminate\Queue\SerializesModels;
-
- class NotifyEmail extends Mailable
- {
- use Queueable, SerializesModels;
-
- public $details;
-
- /**
- * Create a new message instance.
- *
- * @return void
- */
- public function __construct($details)
- {
- $this->details = $details;
- }
-
- /**
- * Build the message.
- *
- * @return $this
- */
- public function build()
- {
- return $this->subject($this->details['subject'])
- ->view('emails.'.$this->details['template']);
- }
- }
|