Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addSuccessSendTestmail (0.08 seconds)

  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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: Sent a 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;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 126.6K bytes
    - Click Count (0)
Back to Top