当用户由API Magento注册时发送确认电子邮件(Send confirmation email when user was registered by API Magento)

编程入门 行业动态 更新时间:2024-10-26 00:19:36
当用户由API Magento注册时发送确认电子邮件(Send confirmation email when user was registered by API Magento)

我打开了选项系统 - >配置 - >客户配置 - >需要电子邮件确认 ,现在当用户通过常规表单注册时,他们会收到带有所需帐户确认的电子邮件。 但是现在我需要为Magento API创建的用户做同样的事情。 我设置了这个选项:

$result = $proxy->customerCustomerCreate($sessionId, [ 'email' => 'mycustomemail@gmail.com', 'firstname' => 'testfirstname', 'lastname' => 'testlastname', 'password' => 'testpassword', 'website_id' => 1, 'store_id' => 1, 'group_id' => 4, ]);

当我将数据库中的记录与表单和API创建的用户进行比较时,它们完全相同。 我的意思是字段website_idstore_id是相同的。 我该怎么调试这个,或者你可以告诉我如何在Magento的API中实现这个功能?

PS: 系统 - >配置 - >客户配置 - >共享客户帐户设置为全局

I turned on the option System -> Configuration -> Customer Configuration -> Require Emails Confirmation and now when users registered by usual form they get the email with required account confirmation. But now I need to do the same for users created by Magento API. I set this options:

$result = $proxy->customerCustomerCreate($sessionId, [ 'email' => 'mycustomemail@gmail.com', 'firstname' => 'testfirstname', 'lastname' => 'testlastname', 'password' => 'testpassword', 'website_id' => 1, 'store_id' => 1, 'group_id' => 4, ]);

When I compared records in database for user created by form and API, they were exactly the same. I mean fields website_id and store_id were the same. How can I debug this or maybe you can tell me how to implement this feature into Magento's API?

P.S: System -> Configuration -> Customer Configuration -> Share Customer Accounts is set to Global.

最满意答案

那么,解决方案是覆盖Model Mage / Customer / Model / Customer / Api.php。 更多关于这里 !

Well, the solution is to override Model Mage/Customer/Model/Customer/Api.php. More about that here !

更多推荐

本文发布于:2023-04-29 09:13:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1335875.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:电子邮件   用户   API   Magento   Send

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!