View Single Post
  #5  
Old 11-20-2012, 06:43 AM
  karina's Avatar 
karina karina is offline
 

X-Cart team
  
Join Date: Jul 2009
Posts: 123
 

Default Re: Review Reminder Email

Quote:
Originally Posted by not_so_young_greg
Well, in my case it does not send remainders at all. It shows that they were sent but I find nothing in my mailbox. It works fine in test mode though.
Anybody knows what I am doing wrong?

There are two possible solutions
1. Check your 'send_review_reminders.php' file. If you find such part of code:
PHP Code:
//define('TEST_MODE', true);
//define('TEST_EMAIL', 'testemail@example.com'); 

then uncomment it and replace with:

PHP Code:
define('TEST_MODE'false);
define('TEST_EMAIL'''); 


---- OR -----

2. In the 'send_review_reminders.php' file find the following part of code:
PHP Code:
$result func_acr_send_review_reminders(ORDERS_PER_LAUNCHTEST_MODETEST_EMAIL); 

and replace it with:

PHP Code:
$result func_acr_send_review_reminders(
    
func_constant('ORDERS_PER_LAUNCH'),
    
func_constant('TEST_MODE'),
    
func_constant('TEST_EMAIL')
); 
__________________
Karina Lipnyagova

The "Advanced Customer Reviews", "Root Categories" and "Pop-up Anywhere" author
Reply With Quote