在 Magento1.8 中更改现有客户电子邮件地址
Posted
技术标签:
【中文标题】在 Magento1.8 中更改现有客户电子邮件地址【英文标题】:Change Existing Customer Email Address in Magento1.8 【发布时间】:2020-05-03 02:38:47 【问题描述】:第一个大问题是我们如何在 Magento 1.8 中更改电子邮件地址,经过大量发现我找到了解决方案,因此我与大家分享。
【问题讨论】:
【参考方案1】:使用您的默认用户名打开 Putty 并复制 - 将以下脚本粘贴到其中。
客户电子邮件更改
select * from sales_flat_order_address where email='old@gmail';
update sales_flat_order_address set email='new@gmail.com' where email='old@gmail' and telephone='Telephone Number';
select * from customer_entity where email = 'old@gmail';
update customer_entity set email = 'new@gmail.com' where email ='old@gmail';
select * from sales_flat_order where customer_email='old@gmail';
update sales_flat_order set customer_email='new@gmail.com' where customer_email='old@gmail';
select * from sales_flat_quote where customer_email = 'old@gmail';
update sales_flat_quote set customer_email='new@gmail.com' where customer_email='old@gmail
【讨论】:
以上是关于在 Magento1.8 中更改现有客户电子邮件地址的主要内容,如果未能解决你的问题,请参考以下文章