From b56df841c5c80aa166988d2bc2cf55fa729c6b95 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 16 Oct 2021 22:27:37 +0100 Subject: [PATCH] emoji email --- lgsm/functions/alert_email.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index 2e6bec0c8..f5faa1a9d 100755 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -13,7 +13,7 @@ fn_sleep_time if [ -n "${emailfrom}" ]; then mail -s "${alertemoji} ${alerttitle} ${alertemoji}" -r "${emailfrom}" "${email}" < "${alertlog}" else - mail -s "${alerttitle}" "${email}" < "${alertlog}" + mail -s "${alertemoji} ${alerttitle} ${alertemoji}" "${email}" < "${alertlog}" fi exitcode=$? if [ "${exitcode}" == "0" ]; then