We have created a program that allows you to view and identify the subscription of an account based on a series of tokens that concern the calculation of points;
In the Dev area we used this Token:
#if($listOne)
#set( $intMax = $math.sub($listOne.size(),1) )
#foreach( $num in [ $intMax..0 ] )
#if(${listOne.get($num)} && ${listOne.get($num).listTwo.get(0)} )
${listOne.get($num).listTwo.get(0).name}
#break
#end
#end
#end
And we used the same token in Production Area ;
Dev Area :
Shows this results for the Activity Log of the user :
The results of the Campaign, in this case the emails are sent and delivered :
Moreover we have obtained the same results through the use of a batch campaign activated with a Run Once while in production with the same operation we have not obtained any results.
Production Area :
once we changed users in production we tested the campaign using the same Token but we found different results, we obtained this results for the Activity Log of the user :
While the results of the campaign are as follows:
Why, since there are no differences between the two environments, we find this error in sending emails: None.get ?
... View more