count() === 1) { $repository->attachRole($event->user, 'owner'); } return true; } /** * @param RequestedNewPassword $event * * @return bool */ public function sendNewPassword(RequestedNewPassword $event): bool { $email = $event->user->email; $ipAddress = $event->ipAddress; $token = $event->token; $url = route('password.reset', [$token]); // send email. try { Mail::to($email)->send(new RequestedNewPasswordMail($url, $ipAddress)); // @codeCoverageIgnoreStart } catch (Swift_TransportException $e) { Log::error($e->getMessage()); } // @codeCoverageIgnoreEnd return true; } /** * This method will send the user a registration mail, welcoming him or her to Firefly III. * This message is only sent when the configuration of Firefly III says so. * * @param RegisteredUser $event * * @return bool */ public function sendRegistrationMail(RegisteredUser $event) { $sendMail = env('SEND_REGISTRATION_MAIL', true); if (!$sendMail) { return true; // @codeCoverageIgnore } // get the email address $email = $event->user->email; $address = route('index'); $ipAddress = $event->ipAddress; // send email. try { Mail::to($email)->send(new RegisteredUserMail($address, $ipAddress)); // @codeCoverageIgnoreStart } catch (Swift_TransportException $e) { Log::error($e->getMessage()); } // @codeCoverageIgnoreEnd return true; } }