global-functions: $SendEMail: invert condition

This commit is contained in:
Christian Hesse 2020-03-05 10:57:47 +01:00
parent 227151e189
commit 3d07ebde05

View file

@ -389,7 +389,10 @@
:global EmailGeneralTo; :global EmailGeneralTo;
:global EmailGeneralCc; :global EmailGeneralCc;
:if ([ :len $EmailGeneralTo ] > 0) do={ :if ([ :len $EmailGeneralTo ] = 0) do={
:return;
}
:do { :do {
:local Signature [ / system note get note ]; :local Signature [ / system note get note ];
:if ([ :len $Signature ] > 0) do={ :if ([ :len $Signature ] > 0) do={
@ -401,7 +404,6 @@
} on-error={ } on-error={
:log warning "Failed sending notification mail!"; :log warning "Failed sending notification mail!";
} }
}
} }
# send notification via e-mail and telegram # send notification via e-mail and telegram