首页 > 解决方案 > 如何通过电子邮件发送评论表单网址(无管理面板)

问题描述

您好,我希望能够向我的客户发送一封包含 URL 的电子邮件,该 URL 会将他们定向到一个表单,当订单状态完成时,他们可以在该表单中留下对该特定产品的评论。

当前代码:

public function afterSave(OrderRepositoryInterface $subject, $result)
{
    if($result->getState() == Order::STATE_COMPLETE) {
        $orderProductUrls = [];
        foreach ($result->getAllItems() as $item) {
            // this is where I add the Review form Url for product
            $orderProductUrls[] = $item;
        }

        $this->orderUrlMessagePublisher->publishMessage($orderProductUrls);
    }

    return $result;
}

如您所见,我在针对州的订单上设置了一个保存后插件。现在我卡在 url 页面上,如何获取这些产品的评论表?

标签: magentomagento2magento2.4

解决方案


推荐阅读