gorkn Posted February 15, 2018 Share Posted February 15, 2018 I'm looking for a solution to be able to send follow-up emails after a certain amount of time after the order. For example, 5 days after the order is placed, an email would automatically be sent with a survey. Is there a module or something available that would do this? Thanks in advance! Link to comment Share on other sites More sharing options...
selectshop.at Posted February 16, 2018 Share Posted February 16, 2018 Use the native module you will find on back-office, module list "customer follow-up". Link to comment Share on other sites More sharing options...
num47 Posted March 11, 2019 Share Posted March 11, 2019 can anyone please upload this module. It seems prestashop has removed this native module. Link to comment Share on other sites More sharing options...
Guest Posted March 11, 2019 Share Posted March 11, 2019 We use Yotpo Link to comment Share on other sites More sharing options...
dandumit Posted July 24, 2019 Share Posted July 24, 2019 even your request it's extremely basic , no native module does this. that one customer follow up does anything but this . Gives discounts at certain amount of time and so on but it's not asking for review or order follow up Link to comment Share on other sites More sharing options...
creasolstore Posted January 28, 2022 Share Posted January 28, 2022 (edited) I have modified the script modules/followup/followup.php in this way: /* For all validated orders, a discount if re-ordering before x days */ private function reOrder($count = false) { $email_logs = $this->getLogsEmail(2); $sql = ' SELECT o.id_order, c.id_cart, o.id_lang, o.id_shop, cu.id_customer, cu.firstname, cu.lastname, cu.email FROM '._DB_PREFIX_.'orders o LEFT JOIN '._DB_PREFIX_.'customer cu ON (cu.id_customer = o.id_customer) LEFT JOIN '._DB_PREFIX_.'cart c ON (c.id_cart = o.id_cart) WHERE o.valid = 1 AND c.date_add >= DATE_SUB(CURDATE(),INTERVAL 15 DAY) AND c.date_add <= DATE_SUB(CURDATE(),INTERVAL 10 DAY) AND cu.is_guest = 0'; //psubiaco: send followup_2 email between 10-15 days from order - modified the last 3 lines I hope it works, cannot check now. Then, I added in each file modules/followup/mails/*/followup_2.html a sentence asking the customer to leave a review on google and facebook. Maybe this can help... sending review + discount after 10 days from order is nice and helpful. Regards. Paolo Edited January 28, 2022 by creasolstore using code statement for the piece of php script (see edit history) 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