Loading
What email merge tag will yield the product name of a line item?

I am defining an email template for the Product Version Upgrade Job. The boiler-plate code (see below) only shows the activation ID for each line item. I want to show the Product Name and seat count as well. I think I see a tag for count but I can see no tag that will give me the Product Name for that line item.

 

What tag can I use?

 

Here is the code as of now

 

[[FOR-EACH TAG="Product"]]

   [[Name]]

  [[FOR-EACH TAG="EntitlementLineItem"]]

    [[ActivationID]]

 

    (from previous: [[ParentLineItemActivationID]])

 

  [[END FOR-EACH]]

[[END FOR-EACH]]   


  • mrathinam (Flexera Software)

    Hi @jmoleary​ 

    Can you please give a try with the code below:

    ---

    [[FOR-EACH TAG="Contact"]]

       Organization: [[Name]] <br>

       Contact Name: [[Firstname]] [[Lastname]]<br>

     

     Upgrade(s) to the following product(s):   

     [[FOR-EACH TAG="Product"]]

       Upgrade to Product: [[Name]] 

            Version: [[Version]] <br>

       [[FOR-EACH TAG="EntitlementLineItem"]]

        Upgrade Activation ID: [[ActivationID]] <br>

        From Activation ID: [[ParentLineItemActivationID]] <br>

        Order ID: [[OrderID]] <br>

        Quantity: [[SeatCount]]<br>

        Permanent: [[Permanent]]<br>

        Expiration Date (if not permanent): [[ExpirationDate]]<br>

       [[END FOR-EACH]]

     [[END FOR-EACH]]

     

       If you have any questions, contact your local XYZ Corporation office.         

       Rights and restrictions on the use of the products are set forth in XYZ Corporation License Terms agreement.

     [[END FOR-EACH]]

    ---

    Best Regards,

    Expand Post

Loading
What email merge tag will yield the product name of a line item?