【发布时间】:2018-03-19 12:42:32
【问题描述】:
在 PHP 内置的外部系统中,我编写了以下代码来调用 API 以创建客户帐户:
'customer' =>
array (
'first_name' => $_POST['datalog']['firstName'],
'last_name' => $_POST['datalog']['lastName'],
'email' => $_POST['datalog']['email'],
'verified_email'=> true,
'password'=> $rand_pass,
'password_confirmation' => $rand_pass,
//'send_email_welcome' => true,
'send_email_invite' => true,
),
客户创建成功,但他们没有收到任何邀请电子邮件。我已关注 Shopify 文档:https://help.shopify.com/api/reference/customer
【问题讨论】:
标签: shopify