Hi,
I added logic in the nms:delivery input form hence the text message is rendering automatically in the sms delivery template inside text content. But its coming at the starting position.
Please suggest how to display text at the ent of the content.
Views
Replies
Total Likes
Hi,
Could you paste the form code you added to alter the delivery content?
Thanks,
-Jon
Views
Replies
Total Likes
I have added below code in nms:delivery input form inside input tag-
<enter name="onChange">
<if expr="EV(@messageType, 'sms')">
<set value="Avreg? LFAVREG till 71120" xpath="/delivery/content/sms/source"/>
</if>
Please suggest what changes I should do, so the code will come at the end of the SMS content.
Thanks.
Views
Replies
Total Likes
Hi @tejashriw155148 ,
Try the below code,
(By giving empty set 'value' before the last line set value)
<enter name="onChange">
<if expr="EV(@messageType, 'sms')">
<set value=" " xpath="/delivery/content/sms/source"/>
<set value="Last line text" xpath="/delivery/content/sms/source"/>
</if>
Views
Replies
Total Likes
Views
Replies
Total Likes