diff options
Diffstat (limited to 'mod')
| -rw-r--r-- | mod/notification-email.rsc | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/mod/notification-email.rsc b/mod/notification-email.rsc index ad9762a..7c3a6ff 100644 --- a/mod/notification-email.rsc +++ b/mod/notification-email.rsc @@ -101,8 +101,11 @@              $LogPrint warning $0 ("File '" . $File . "' does not exist, can not attach.");            }          } -        /tool/e-mail/send from=[ $EMailGenerateFrom ] to=($Message->"to") cc=($Message->"cc") \ -          subject=($Message->"subject") body=($Message->"body") file=$Attach; +        :do { +          /tool/e-mail/send from=[ $EMailGenerateFrom ] to=($Message->"to") \ +              cc=($Message->"cc") subject=($Message->"subject") \ +              body=($Message->"body") file=$Attach; +        } on-error={ }          :local Wait true;          :do {            :delay 1s; |