gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
710 B
24 lines
710 B
#!/bin/bash
|
|
# LinuxGSM alert_email.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: https://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Sends email alert.
|
|
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
fn_print_dots "Sending Email alert: ${email}"
|
|
|
|
if [ -n "${emailfrom}" ]; then
|
|
mail -s "${alerttitle}" -r "${emailfrom}" "${email}" < "${alertlog}"
|
|
else
|
|
mail -s "${alerttitle}" "${email}" < "${alertlog}"
|
|
fi
|
|
exitcode=$?
|
|
if [ "${exitcode}" -ne 0 ]; then
|
|
fn_print_ok_nl "Sending Email alert: ${email}"
|
|
fn_script_log_pass "Sending Email alert: ${email}"
|
|
else
|
|
fn_print_fail_nl "Sending Email alert: ${email}"
|
|
fn_script_log_fail "Sending Email alert: ${email}"
|
|
fi
|
|
|