support_email = $support_email; $this->attempts = $attempts; $this->user_email = $user->getEmail(); $this->user_fullname = $user->getFullName(); } /** * Build the message. * * @return $this */ public function build() { $subject = Config::get("mail.locked_user_email_subject"); if(empty($subject)) $subject = sprintf("[%s] Your User has been locked", Config::get('app.app_name')); return $this->from(Config::get("mail.from")) ->to($this->user_email) ->subject($subject) ->view('emails.auth.user_locked'); } }