private function sendSMS(RedmineUser $user, $message)
 {
     $clientSMS = new SMSClient($this->alfa_sms_ID, $this->alfa_sms_password, $this->alfa_sms_api_key);
     try {
         $clientSMS->sendSMS($this->alfa_sms_name, '+38' . $user->getSettings()->getPhone(), $message);
     } catch (\Exception $e) {
     }
 }