From 2590243d8e004f975d1e1f5f85bdcef5b6069168 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 17 Sep 2020 14:18:20 +0100 Subject: [PATCH] remove emoji --- lgsm/functions/alert_email.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index 508002303..f69f8f408 100755 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -10,9 +10,9 @@ fn_print_dots "Sending Email alert: ${email}" fn_sleep_time if [ "${emailfrom}" ]; then - mail -s "${alertemoji} ${alertsubject} ${alertemoji}" -r "${emailfrom}" "${email}" < "${alertlog}" + mail -s "${alertsubject}" -r "${emailfrom}" "${email}" < "${alertlog}" else - mail -s "${alertemoji} ${alertsubject} ${alertemoji}" "${email}" < "${alertlog}" + mail -s "${alertsubject}" "${email}" < "${alertlog}" fi exitcode=$? if [ "${exitcode}" == "0" ]; then