subject('Verifique seu e-mail') ->greeting("Olá, {$notifiable->name}!") ->action( 'Verifique seu E-mail', $this->verificationUrl($notifiable) ) ->line("Por favor clique no link acima para verificar seu endereço de e-mail.") ->line('Se você não criou uma conta, nenhuma ação adicional é necessária.') ->markdown('vendor.notifications.email'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } protected function verificationUrl($notifiable) { return URL::temporarySignedRoute( 'verification.verify', Carbon::now()->addMinute(Config::get('auth.verification.expire', 60)), [ 'id' => $notifiable->getKey(), 'hash' => sha1($notifiable->getEmailForVerification()), ] ); } }