phpvms/app/Mail/UserPending.php

28 lines
604 B
PHP
Raw Normal View History

<?php
namespace App\Mail;
use App\Models\User;
use Illuminate\Bus\Queueable;
2018-02-21 12:33:09 +08:00
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class UserPending extends Mailable
{
use Queueable, SerializesModels;
2017-12-30 06:56:46 +08:00
public $subject, $user;
public function __construct(User $user, $subject = null)
{
$this->subject = $subject ?: 'Your registration is pending!';
$this->user = $user;
}
public function build()
{
return $this->markdown('emails.user.pending')
->subject($this->subject)
->with(['user' => $this->user]);
}
}