Hello,
I did an script action call with an form.
here is the Action code :
#set($id = $requestParameters.CUSTOMERID)
#set($Int = 0)
#set($customerID = $Int.parseInt($id))
$Customer.resetCustParameters()
$Customer.setCustomerID($customerID)
#set($mail=$MailingDao.getMailing(78,1))
#if($mail)
$mail.sendEventMailing($customerID.intValue(),2,"1", null, $ScriptHelper.getApplicationContext())
#end
#set($scriptResult="1")
Here is the succes form code :
<html>
<body>
$customerID
</body>
</html>
The problem is that the event mail is not send, I got the success form that work with the correct customerID, but the event email is not send.
I can not find any log to help.
My setup is : Centos 6.5 64bits / Openemm 2015R2 / java 1.8 / tomcat 8
thanks for your help