Announcement

Collapse
No announcement yet.

about SKU

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • about SKU

    How to send the sku number in receipt email to our customer. i'm using PaaS system. i've tried it by sending sku number in code (<SKU>test-1</SKU>) but i'm not getting sku number in my test email.. i want to know that is it possible to get sku number in receipt email or not. if possible then how

  • #2
    Good day!

    SKU is not a publicly available variable as it is for internal use only. The system does not expose SKU to the public in any shape or form.

    Since you are using the API Class Library you may easily take the SKU and pass it as a custom question / answer pair in the receipt. You could make the custom question hidden so the end user does not see it and behind the scene simply pass it to the API. Custom Questions . Answers appear on the receipt so it can do exactly what you want.

    Hope that answers your question.
    Regards,
    Click & Pledge Support Department

    Join us @ the educational webinars: https://clickandpledge.com/webinars/
    Live Support- read more: https://support.clickandpledge.com/s/article/general-information-live-support/

    Comment


    • #3
      can we get the sku in our report at https://portal.clickandpledge.com.? because there is no option of SKU.


      is there any other use of sku at this your portal.. or any other way to get sku of each transaction..?

      Comment


      • #4
        Hello clickandpledge,

        now I've try to send sku no in CustomFieldList tag but now i'm getting sku no at the bottom of the receipt in Comment & Other Info section...? is there any way to get sku no. in the receipt table as column with the help of some custom field or any thing else... how to pass SKU as a custom question / answer pair in the receipt. because there is no question/answer tag according to my research in PaaS if i'm wrong then tell me how to do the same.. here is the code and receipt that i've used to get SKU in receipt and what i got...

        <OrderItemList>
        <OrderItem>
        <ItemID>1</ItemID>
        <ItemName>AML</ItemName>
        <Quantity>1</Quantity>
        <UnitPrice>1</UnitPrice>
        <SKU>sku--1</SKU>
        <CustomFieldList>
        <CustomField>
        <FieldName>SKU for AML</FieldName>
        <FieldValue>sku--1</FieldValue>
        </CustomField>
        </CustomFieldList>
        </OrderItem>
        <OrderItem>
        <ItemID>2</ItemID>
        <ItemName>ALL</ItemName>
        <Quantity>1</Quantity>
        <UnitPrice>1</UnitPrice>
        <SKU>sku--2</SKU>
        <CustomFieldList>
        <CustomField>
        <FieldName>SKU for ALL</FieldName>
        <FieldValue>sku--2</FieldValue>
        </CustomField>
        </CustomFieldList>
        </OrderItem>
        </OrderItemList>
        <Receipt>
        <SendReceipt>true</SendReceipt>

        <EmailNotificationList>
        <NotificationEmail>[email protected]</NotificationEmail>
        <NotificationEmail>[email protected]</NotificationEmail>
        </EmailNotificationList>
        </Receipt>

        ***Test Mode Transaction***
        Details
        Price Quantity Total
        AML $ 0.01 1 $ 0.01
        ALL $ 0.01 1 $ 0.01
        Subtotal $ 0.02
        Total $ 0.02
        Total Charge $ 0.02

        ***Test Mode Transaction***
        Comments & Other Info:
        SKU for AML = sku--1
        SKU for ALL = sku--2

        Comment

        Working...
        X