如何在magneto.i中以编程方式将电子邮件确认从“已确认”更改为“未确认”已尝试以下代码,但无法正常工作
$customer->setConfirmation($customer->getRandomConfirmationKey());
$customer->save();
答案 0 :(得分:0)
//尝试使用以下代码。
$customer->setConfirmation(null);
$customer->save();
或者
$customer->setConfirmation(false);
$customer->save();