<@U947A8SBX> most probably you have `&amp;` that n...
# advancedpdf
m
@D17339 most probably you have
&
that needs to be correctly encoded for XML (changed to
&
)
d
This is the line of code which is causing issue
<a style="color: #F0722E" target="_new" href="https://wwwappsandbox.ups.com/WebTracking?TypeOfInquiryNumber=T&amp;InquiryNumber=${package.packagetrackingnumber}">${package.packagetrackingnumber}</a></BR>
m
Change
&InquiryNumber=
to
&InquiryNumber=
👍 1