I have a script in the pre send script which is a bash script and looks like the below
if [ $TRIMMED_MONTH -eq 01 ]
then
$MONTH=“January”
and continues for all the months.
I then want to access the property $MONTH in the email body text.
How can I go about accessing that property?
Thanks