isNewUser ? '[SAM] 계정이 생성되었습니다' : '[SAM] 비밀번호가 초기화되었습니다'; return new Envelope( subject: $subject, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.user-password', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }