Composed SMS format with % does not work

I have FMC130 and trying to add custom SMS format that will be sent to a pre-defined SIM card number when AIN2 enters and exits a range. I typed [IMEI %imei, Date %date, Ext_Battery %exv, AIN2 %ain2]. However, i only get the value of %ain2. The rest of the % placeholders do not work. It only works when I type [%imei %date %exv %ain2]. Wondering what are the conditions here for syntax.

Hi,

The issue here is that you are using commas with placeholders.

You cannot use them together like %imei,

Instead of a comma, you can use a space, or add one space before the comma.

For example, both of the following options will work for you:

IMEI %imei , Date %date , Ext_Battery %exv , AIN2 %ain2

IMEI %imei Date %date Ext_Battery %exv AIN2 %ain2

Best regards,
Naveen

I see now the mistake. Thanks for the help.