2019-07-18 06:53:22 +02:00
|
|
|
<?php
|
2020-09-21 12:54:58 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-21 12:54:58 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-07-18 06:53:22 +02:00
|
|
|
|
|
|
|
namespace App\Notifications;
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
use Closure;
|
2019-07-18 06:53:22 +02:00
|
|
|
use Illuminate\Bus\Queueable;
|
2020-03-11 01:38:11 +01:00
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2019-07-18 06:53:22 +02:00
|
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
2020-03-11 01:38:11 +01:00
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2019-07-18 06:53:22 +02:00
|
|
|
|
2021-02-14 23:54:27 +01:00
|
|
|
//@deprecated
|
2019-07-18 06:53:22 +02:00
|
|
|
class ClientContactResetPassword extends Notification
|
|
|
|
{
|
2021-02-11 13:58:36 +01:00
|
|
|
// use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* The password reset token.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-07-18 06:53:22 +02:00
|
|
|
public $token;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The callback that should be used to build the mail message.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @var Closure|null
|
2019-07-18 06:53:22 +02:00
|
|
|
*/
|
|
|
|
public static $toMailCallback;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a notification instance.
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($token)
|
|
|
|
{
|
|
|
|
$this->token = $token;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notification's channels.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
|
|
|
* @return array|string
|
|
|
|
*/
|
|
|
|
public function via($notifiable)
|
|
|
|
{
|
2021-02-14 23:54:27 +01:00
|
|
|
return [];
|
2019-07-18 06:53:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the mail representation of the notification.
|
|
|
|
*
|
|
|
|
* @param mixed $notifiable
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return MailMessage
|
2019-07-18 06:53:22 +02:00
|
|
|
*/
|
|
|
|
public function toMail($notifiable)
|
|
|
|
{
|
|
|
|
if (static::$toMailCallback) {
|
|
|
|
return call_user_func(static::$toMailCallback, $notifiable, $this->token);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (new MailMessage)
|
2019-11-04 21:50:10 +01:00
|
|
|
->subject('Reset Password Notification')
|
|
|
|
->line('You are receiving this email because we received a password reset request for your account.')
|
|
|
|
->action('Reset Password', url(config('app.url').route('client.password.reset', ['token' => $this->token, 'email' => $notifiable->getEmailForPasswordReset()], false)))
|
|
|
|
->line('This password reset link will expire in :count minutes.', ['count' => config('auth.passwords.users.expire')])
|
|
|
|
->line('If you did not request a password reset, no further action is required.');
|
2019-07-18 06:53:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a callback that should be used when building the notification mail message.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Closure $callback
|
2019-07-18 06:53:22 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function toMailUsing($callback)
|
|
|
|
{
|
|
|
|
static::$toMailCallback = $callback;
|
|
|
|
}
|
|
|
|
}
|