Magento – How to get the gift message value in Magento2.1.7

giftmessagemagento2

How to get the gift message value in Magento2.1.7?

I am getting the gift message value as $getgiftMessage = $item->giftMessage();

But I am not able to get the value.

Any help would be appreciated.

Best Answer

You can get Gift message for order item using below code.

public function __construct(
    \Magento\GiftMessage\Api\OrderItemRepositoryInterface $orderItemGiftRepo
) {
    $this->orderItemGiftRepo = $orderItemGiftRepo;
}

public function getGiftMessage($orderId, $orderItemId)
{ 
    $giftMessage = $this->orderItemGiftRepo->get($orderId, $orderItemId);
    $giftMessage->getMessage(); // This will give you message
}

I hope it will helpful :)

Related Topic