Hello!
I've extended delivery schema with fields "utm_campaign" and "utmSource" and when I try to use them, for example populate in delivery text (for testing) they are not visible in email client but they are visible in webview. What is interesting is that this is not happening when use out of the box fields of delivery, for example "title" displays everywhere properly...
So from the code below only delivery title is displayed in both email client and webview. The other two works only in webview. Any ideas what might be causing this?
<div class="text-container" contenteditable="true">
<p style="text-align:center;">
<span style="font-size:24px;color:rgb(9, 52, 121);font-weight:700;">
<span class="acr-field nl-dce-field" data-nl-expr="/context/delivery/cusUtm_campaign" data-nl-type="string" contenteditable="false">utm campaign (cusUtm_campaign)</span>
<span class="acr-field nl-dce-field" data-nl-expr="/context/delivery/cusUtmSource" data-nl-type="string" contenteditable="false">utm source (cusUtmSource)</span>
<span class="acr-field nl-dce-field" data-nl-expr="/context/delivery/title" data-nl-type="string" contenteditable="false">Delivery (title)</span>
</span></p>
</div>