package errors import ( "errors" ) var ( ErrSmtpDisabled = errors.New("Smtp is not enabled in the config") ErrSmtpMissingConfiguration = errors.New("Some necessary SMTP configuration is missing") )