| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Notifications; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use Illuminate\Notifications\Messages\MailMessage; | 
					
						
							| 
									
										
										
										
											2018-09-25 23:58:03 +08:00
										 |  |  | use Illuminate\Notifications\Notification; | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ResetPassword extends Notification | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The password reset token. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public $token; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create a notification instance. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param  string  $token | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct($token) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->token = $token; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get the notification's channels. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param  mixed  $notifiable | 
					
						
							|  |  |  |      * @return array|string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function via($notifiable) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return ['mail']; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Build the mail representation of the notification. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return \Illuminate\Notifications\Messages\MailMessage | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function toMail() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return (new MailMessage) | 
					
						
							| 
									
										
										
										
											2016-11-14 00:34:28 +08:00
										 |  |  |             ->subject(trans('auth.email_reset_subject', ['appName' => setting('app-name')])) | 
					
						
							|  |  |  |             ->line(trans('auth.email_reset_text')) | 
					
						
							|  |  |  |             ->action(trans('auth.reset_password'), baseUrl('password/reset/' . $this->token)) | 
					
						
							|  |  |  |             ->line(trans('auth.email_reset_not_requested')); | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |