I have an email for which the content is completely generated with velocity script.
In the content I create a list of links. The number of items in the list is different for every ...
Hi Sanford
After further looking into your answer, I could solve the issue.
The error had nothing to do with syntax problems in the code. It was indeed the problem of getting the ...
The complete mail is working ( no errors in the code ) as long as I do not use the array length at the end to decide if I have to throw the exception. Only when using that variable...
json data not included but part of#set( $dataNLD = '[{ xxx }]' )
## Other variables
#set($mybreak = '<br>' )
#set($output = '<span style="font-size:14px;margin-top:0;margin-bottom...
Hi, this is my error :
And my complete code : json data not included , but present in#set( $dataNLD = '[xxxx]' )
The whole system is working in preview, but I am not able to appro...
Take the following code
#set($nrOfLinksInOutput = 1)
#if($nrOfLinksInOutput.equals(0))
#throw_v3("ineligible")
#else
#set($output = 'Links available')
#end
This above works, ...
Hi Darshil,
First of all, thank you for taking the time to look at my case, i really appreciate it.
I have put your above suggested code into 2 new tokens and the email is working...
This is a implementation case which has been described in Sanfords blog post at:https://blog.teknkl.com/velocity-poison-pill-throw-error-revisited/
I want to block sending an email...