Skip to content

Commit

Permalink
[26039] fix send mail doSend logic
Browse files Browse the repository at this point in the history
  • Loading branch information
huthomas committed Dec 20, 2023
1 parent 74dd288 commit 24d553c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void openSendMailDialogWithContent(IAppointment appointment, Object pat,
if (subject != null) {
params.put(MAIL_SUBJECT_PARAM, subject);
}
params.put(MAIL_DO_SEND_PARAM, Boolean.TRUE.toString());
params.put(MAIL_DO_SEND_PARAM, Boolean.FALSE.toString());
String savedAccount = ConfigServiceHolder.get().get(PreferenceConstants.PREF_DEFAULT_MAIL_ACCOUNT_APPOINTMENT,
null);
if (StringUtils.isEmpty(savedAccount)) {
Expand Down

0 comments on commit 24d553c

Please sign in to comment.