From b7a6fbc9cc5d9d601c60e6ed4123e021e4aeaf5b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 11 Jul 2018 18:51:39 +0200 Subject: Added/fixed email verification --- app/Mail/EmailVerification.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/Mail/EmailVerification.php (limited to 'app/Mail') diff --git a/app/Mail/EmailVerification.php b/app/Mail/EmailVerification.php new file mode 100644 index 0000000..4f393ac --- /dev/null +++ b/app/Mail/EmailVerification.php @@ -0,0 +1,36 @@ +user = $user; + } + + /** + * Build the message. + * + * @return $this + */ + public function build() + { + return $this->view('email.verify')->with([ + 'email_token' => $this->user->email_token, + ]); + } +} -- cgit v1.2.3