ERROR_CONFIGURATION

Typ


Versionshinweise

21.1

Web Client


Code

Groovy
MailConstants.ERROR_CONFIGURATION

Beschreibung

Fehlercode, wenn die E-Mail-Konfiguration nicht gefunden wurde oder für den aktuellen Benutzer nicht konfiguriert ist.

Beispiele

Groovy
IMailResult result = MailUtils.setActivity("ActivityPk", true, "NotExsistingMailConfig");
if(!MailUtils.isSuccessful(result) && ScriptUtils.equals(MailConstants.ERROR_CONFIGURATION, MailUtils.getErrorCode(result)))
{ ... }