mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
3cf19d8656
This pull request applies code style fixes from an analysis carried out by [StyleCI](https://github.styleci.io). --- For more information, click [here](https://github.styleci.io/analyses/8wKwbZ).
39 lines
752 B
PHP
39 lines
752 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class EmailVerification extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $url;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($url)
|
|
{
|
|
$this->url = $url;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
$site_name = option_localized('site_name');
|
|
|
|
return $this->from(config('mail.username'), $site_name)
|
|
->subject(trans('user.verification.mail.title', ['sitename' => $site_name]))
|
|
->view('mails.email-verification');
|
|
}
|
|
}
|