Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addSuccessSendTestmail (0.09 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                        postcard.addTo(address);
                    }));
                    BeanUtil.copyMapToBean(dataMap, postcard);
                });
                saveInfo(messages -> messages.addSuccessSendTestmail(GLOBAL));
                updateProperty(Constants.NOTIFICATION_TO_PROPERTY, form.notificationTo);
                systemProperties.store();
            } catch (final Exception e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: Sent the test mail.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addSuccessSendTestmail(String property) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(SUCCESS_send_testmail));
            return this;
        }
    
        /**
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top