Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Ok, I am having a little trouble grasping what you're saying (again first time in velocity and Java). So for the code below:#set( $interestingProductCodes = ["PRODUCT 1","PRODUCT 2","PRODUCT 3"] )#foreach( $account in $cCUAccount_cList )#if( $interestingProductCodes.contains($account.productCode) )$...
Apparently, Marketo experienced an outage in their data center. So, we have to play the waiting game until they fix the problem.
Basically, I want to display the current payment property of any items that fit the criteria based on their product code. The email is basically informing a customer that opened a new loan that their first payment in the amount of is due on whatever specific date their loan is due:You're first payme...
Hi Sandford,So based on your feedback. I inserted the code with the 14 different product codes accordingly in line as you described below and included an action line under the #if statement.#set( $interestingProductCodes = ["PRODUCT 1","PRODUCT 2","PRODUCT 3"] )#foreach( $account in $cCUAccount_cLis...
Hi Darshil and Sandford,Okay, the code Darshil provided is a good to know, but it's not really something we are looking to implement into the email itself. I am not sure to which custom token I should be implementing these codes. I really only need the tokens to pull the payment balance and next due...
#foreach($data in $cCUAccount_cList)#if($data.productCode.equals("123"))${data.nextDueDate}${data.payment}${data.productCode}#end#endLike this?
Hi Sandford, I'm a little unclear about what you're asking.Best,Lucas
Hi Darshil and Sandford,We are basically targeting this towards customers who opened a new loan. We wait until 7 days before their first payment is due before sending the message indicated above. Also, for the product code, since there are more than one product code, could you install all the produ...
Hi Darshil,The email copy we are applying the tokens to is below:{{lead.First Name:default=edit me}}, this is a reminder that your first loan payment of {{my.CurrentPayment:default=edit me}} is due on {{my.NextDueDate:default=edit me}}. So we want to pull the value for each token based on the Produc...
Hi Darshil,So, two things. First to confirm, I would need to apply the following below to both my Payment and Due Date Tokens correct?Next Due Date Example:${cCUAccount_cList.get(0).nextDueDate}#foreach($data in $cCUAccount_cList)#if($data.productCode.equals("123"))${data.nextDueDate}#endSecond, sin...