settings)); switch ($this->settings->email_sending_method) { case 'default': break; case 'gmail': $this->setGmailMailer(); break; default: break; } } public function setGmailMailer() { $sending_user = $this->settings->gmail_sending_user_id; $user = User::find($sending_user); $google = (new Google())->init(); $google->getClient()->setAccessToken(json_encode($user->oauth_user_token)); if ($google->getClient()->isAccessTokenExpired()) { $google->refreshToken($user); } /* * Now that our token is refreshed and valid we can boot the * mail driver at runtime and also set the token which will persist * just for this request. */ Config::set('mail.driver', 'gmail'); Config::set('services.gmail.token', $user->oauth_user_token->access_token); Config::set('mail.from.address', $user->email); Config::set('mail.from.name', $user->present()->name()); (new MailServiceProvider(app()))->register(); } public function logMailError($errors, $recipient_object) { SystemLogger::dispatch( $errors, SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_SEND, SystemLog::TYPE_FAILURE, $recipient_object ); } public function failed($exception = null) { nlog('the job failed'); nlog($exception->getMessage()); $job_failure = new EmailFailure(); $job_failure->string_metric5 = get_parent_class($this); $job_failure->string_metric6 = $exception->getMessage(); LightLogs::create($job_failure) ->batch(); } }