public static function sendManualReminder($tour, $tournament)
 {
     $users = UsersTournaments::getReminderRecipients($tournament, $tour);
     if (!empty($users)) {
         return self::sendReminder($tour, $tournament, $users);
     } else {
         throw new ErrorException('Error sending reminders');
     }
 }