global-functions: $SendEMail: prepare to add link

For e-mail just in plain text...
This commit is contained in:
Christian Hesse 2020-11-26 22:36:14 +01:00
parent 46866e2ff2
commit d09baddac3

View file

@ -712,6 +712,7 @@
:set SendEMail do={
:local Subject [ :tostr $1 ];
:local Message [ :tostr $2 ];
:local Link;
:local Attach [ :tostr $3 ];
:global Identity;
@ -730,6 +731,7 @@
/ tool e-mail send to=$EmailGeneralTo cc=$EmailGeneralCc \
subject=("[" . $Identity . "] " . $Subject) \
body=($Message . \
[ $IfThenElse ([ :len $Link ] > 0) ("\n\n" . $Link) "" ] . \
[ $IfThenElse ([ :len $Signature ] > 0) ("\n-- \n" . $Signature) "" ]) \
file=$Attach;
} on-error={