mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
618 B
PHTML
34 lines
618 B
PHTML
7 years ago
|
<?php
|
||
|
|
||
|
namespace App\Mail;
|
||
|
|
||
|
use App\EmailVerification;
|
||
|
use Illuminate\Bus\Queueable;
|
||
|
use Illuminate\Mail\Mailable;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
class ConfirmEmail extends Mailable
|
||
|
{
|
||
|
use Queueable, SerializesModels;
|
||
|
|
||
|
/**
|
||
|
* Create a new message instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(EmailVerification $verify)
|
||
|
{
|
||
|
$this->verify = $verify;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Build the message.
|
||
|
*
|
||
|
* @return $this
|
||
|
*/
|
||
|
public function build()
|
||
|
{
|
||
|
return $this->markdown('emails.confirm_email')->with(['verify'=>$this->verify]);
|
||
|
}
|
||
|
}
|