added email to text notification

This commit is contained in:
2022-01-27 18:47:39 -05:00
parent df45ac0ba7
commit 91f85b1101

View File

@@ -11,6 +11,8 @@ INVENTORY_QUANTITY=$(grep -o -m 1 '"inventory_quantity":[0-9]\+,' ${SOURCE_FILE}
if [[ "${INVENTORY_QUANTITY}" -gt "0" ]]; then
MESSAGE="There are currently ${INVENTORY_QUANTITY} in stock. ${URL}"
echo ${MESSAGE}
fi
echo ${MESSAGE} | \
mailx -r "stockalerts@johnhgaunt.com" \
--set smtp="smtp.home.johnhgaunt.com:25" \
${PHONE_NUMBER}@vtext.com
fi