Replies: 2 comments 2 replies
-
Sound considerations and of course customers expect to get notifications on the new email. As far as i know, as a logged in user, you cannot make a frontend order with a custom email address. Maybe this should be considered too - what should happen here? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'd go with option 1, it is good to have a "snapshot" of all customer data at the time of the order for bureaucratic/administrative reasons and I'd prefer the historical data never to be changed :-) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My client received complaints from customers that when they changed the emails, they no longer receive order notifications. This is because the notification takes the email address from the order's
customer_email
which was set at order creation. I can think of 2 ways to solve it:getCustomerEmail()
in order module to take the email from the customer module. Cost is a DB read operation.customer_email
column in DB. Cost is event-observer and a DB write.There are thousands of notifications sent everyday. Any idea which approach is best? Is this a good feature for OM?
Beta Was this translation helpful? Give feedback.
All reactions