diff --git a/lgsm/functions/alert_ifttt.sh b/lgsm/functions/alert_ifttt.sh
index 4de5e7a3f..b171f48f6 100644
--- a/lgsm/functions/alert_ifttt.sh
+++ b/lgsm/functions/alert_ifttt.sh
@@ -10,12 +10,11 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
 
 json=$(cat <<EOF
 {
-	"secret": "${pushjettoken}",
-	"level": "5",
-	"message": "all",
-	"link": "https://gameservermanagers.com"
+	"value1": "${servicename}",
+	"value2": "${alertemoji} ${alertsubject} ${alertemoji}",
+	"value3": "Message\n${alertbody}\n\nGame\n${gamename}\n\nServer name\n${servername}\n\nHostname\n${HOSTNAME}\n\nServer IP\n${ip}:${port}\n\nMore info\n${alerturl}"
 }
 EOF
 )
 
-curl -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://maker.ifttt.com/trigger/{event}/with/key/${ifttttoken}"
\ No newline at end of file
+curl -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://maker.ifttt.com/trigger/linuxgsm_alert/with/key/${ifttttoken}"
\ No newline at end of file