Page 1 of 1
Get Tracking numbers for un-registered / anonymous users.
Posted: Thu Apr 30, 2009 9:08 am
by tntmjr
Is there a way to bring up a list of orders and tracking numbers by customer id (email address) and/or order number. Then send that list to the customers email address.
I guess the customer would have to fill in a form much like the lost password function to retrieve this info.
Re: Get Tracking numbers for un-registered / anonymous users.
Posted: Thu Apr 30, 2009 9:47 am
by mazhar
You can filter order depending upon there BillToEmail. Once you are able to load orders you can get tracking number from each order and then trigger some Email manually to that BillToEmail address. Something like
Code: Select all
SELECT * FROM ac_Orders WHERE BillToEmail='abc@abc.com'
Re: Get Tracking numbers for un-registered / anonymous users.
Posted: Tue May 05, 2009 11:42 am
by tntmjr
I was more looking at how this could be a way for the customer to go to the site/store and retrieve his tracking number much like he would retrieve his forgotten password. There would be a form that said something like, " Unregistered or anonymous users track your orders By entering your email here." The difference being; instead of getting a link to re-assign the password he'd get a list of recent orders with tracking numbers if available in an email.