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/Jobs/SendVerificationEmail.php | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 app/Jobs/SendVerificationEmail.php (limited to 'app/Jobs') diff --git a/app/Jobs/SendVerificationEmail.php b/app/Jobs/SendVerificationEmail.php new file mode 100644 index 0000000..0a71f05 --- /dev/null +++ b/app/Jobs/SendVerificationEmail.php @@ -0,0 +1,39 @@ +user = $user; + } + + /** + * Execute the job. + * + * @return void + */ + public function handle() + { + $email = new EmailVerification($this->user); + Mail::to($this->user->email)->send($email); + } +} -- cgit v1.2.3