Hi,
Please suggest me how can I add wildcard operator LIKE in the delivery input form.
I tried below code but getting error when open SMS delivery template:
<if expr="EV(@messageType, 'sms')">
<check expr="[../content/sms/source] LIKE '%Adobe Campaign' ">
<error>"SMS content shoulf contain Adobe Campaign."</error>
</check>
</if>
So I tried below login in nms:delivery input form to send alert message if Adobe Campaign text not present in the SMS content:
<if expr="EV(@messageType, 'sms')">
<soapCall name="CheckSMSContent" service="lf:SMSContent">
<param exprIn="[../content/sms/source]" type="string"/>
</soapCall>
</if>
Please let me know what logic I should add in the javascript file.