al167 Posted October 15, 2019 Share Posted October 15, 2019 Hello all! i have an out of stock product, we have the option for the customer to notify me when the stock is available, we want to know how many people have put down there email for each out of stock product. is there any way to see this in back office or in database files ? prestashop version 1.7.4.3 any help would be very much appreciated! Cheers Allan Link to comment Share on other sites More sharing options...
yama Posted October 15, 2019 Share Posted October 15, 2019 Link to comment Share on other sites More sharing options...
al167 Posted October 16, 2019 Author Share Posted October 16, 2019 Thankyou Yama many thanks!😀 i have found the database file! The list is found in Table: ps_mailalert_customer_oos 1 Link to comment Share on other sites More sharing options...
Rhobur Posted October 19, 2019 Share Posted October 19, 2019 There is no need to work with the DB table, the backoffice has such a list in Advanced Parameters -> Email. Link to comment Share on other sites More sharing options...
willowtree Posted December 29, 2021 Share Posted December 29, 2021 I can't see in Advanced PArameters -> Email any list for what products customers have asked to be notified about? Link to comment Share on other sites More sharing options...
ComGrafPL Posted December 29, 2021 Share Posted December 29, 2021 34 minutes ago, willowtree said: I can't see in Advanced PArameters -> Email any list for what products customers have asked to be notified about? Check setting in Mail alerts module. Link to comment Share on other sites More sharing options...
willowtree Posted December 29, 2021 Share Posted December 29, 2021 I have the mail alerts module. It is configured: Product Availability is on (Give the customer the option of receiving a notification when an out of stock product is available again.) I cannot find a list that shows me how many/who has requested notifications for which products? Link to comment Share on other sites More sharing options...
MinnaLaa Posted April 21, 2022 Share Posted April 21, 2022 On 12/29/2021 at 7:55 PM, willowtree said: I have the mail alerts module. It is configured: Product Availability is on (Give the customer the option of receiving a notification when an out of stock product is available again.) I cannot find a list that shows me how many/who has requested notifications for which products? Hello, would this help you? PS 1.7. Go to Advanced parametres and there should be SQL query. Add a new query and put this into the field: SELECT id_product,id_product_attribute,customer_email FROM ps_mailalert_customer_oos After saving it, you can open it from the list Link to comment Share on other sites More sharing options...
Rynraf Posted October 1 Share Posted October 1 On 4/21/2022 at 3:42 PM, MinnaLaa said: SELECT id_product,id_product_attribute,customer_email FROM ps_mailalert_customer_oos A little improved query... I sorted list from products with the bigger amount subscriptions for notification, but you can just change last line of query and sort list by product name. I'm interested in how many people subscribe for notifications, not a list of each email address. SELECT n.id_product AS "product id" , pl.name AS "product name", n.id_product_attribute AS "product attribute", COUNT(n.customer_email) AS "count customers" FROM ps_mailalert_customer_oos n LEFT JOIN ps_product_lang pl ON n.id_product=pl.id_product WHERE pl.id_lang=1 GROUP BY n.id_product ORDER BY COUNT(n.customer_email) DESC; But I'm still looking for a module which just will show how many subscriptions for availibility notification is for product, the best way - on product page in backoffice... 1 Link to comment Share on other sites More sharing options...
policeclearance Posted October 1 Share Posted October 1 However, I can see a list of customers with active subscriptions. Maybe this is the list I could use to notify customers about new products. I could also create a mailing list for customers interested in new products. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now