bursting - how to print based on variables
i have the following in my bursting file:
<xapi:delivery>
<xapi:email id="123" server="smtp-com-americas.itt.com" port="25" from=" XMLreports@itt.com " reply-to=" XMLreports@itt.com ">
<xapi:message id="123" to="${CF_EMAIL}" attachment="true" subject=" Commercial Invoice No: ${DELIVERY_ID}">
Please review the attached Invoice ${DELIVERY_ID}
</xapi:message>
</xapi:email>
<xapi:print id="printer1"
printer="lpd://CMCPRN/680uk"
</xapi:print>
</xapi:delivery>
how do i print to this printer based on 2 variables in the xml output?
0