在Magento1.8中更改现有客户电子邮件地址



第一个大问题,我们如何在Magento 1.8中更改电子邮件地址 在大量发现我得到了解决方案,所以我与你们分享。

使用默认用户名打开 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

最新更新