What version of Zen-Cart? I ask because the 1.5.5 version of this module has the link appearing in 'Customers' now instead of Tools and the title is 'Abandoned Carts'
Printable View
When sending emails, they are appearing in email programs as From: Root User<actual email address>.
It doesn't appear this way when emailing from any other modules,etc.
Any thoughts on why this might occur.
Hi,
I just installed this mod into a ZC 1.5.4 but cannot figure out what (if anything) is going on.
The following menus have been added to admin:
• Configuration > Configure RCS (all settings currently default)
• Reports > Recovered Sales Results (shows nothing)
I do not have any new menu beneath Tools.
To test, I went to the store, logged in with a Customer test account, added a few products to the cart, then:
- looked at Reports, NOTHING
- looked below Tools, NOTHING
I then logged my customer account (abandoning cart) and checked both spots again. Still NOTHING.
I checked my error log, found nothing.
Is there some additional step(s) required to enable this mod? Also, is there some way to prevent the mod from automatically sending out email?
Thanks!
Linda,
It could be that your webserver is programmed to always insert a send-from "name" if it's left blank ... and this module appears to be leaving it blank.
So, you could try working around that by changing this line: 287 in admin/recover_cart_sales.php
to:Code:zen_mail('', $outEmailAddr, $subject, $email, '', $from, $html_msg);
Code:zen_mail(STORE_NAME, $outEmailAddr, $subject, $email, '', $from, $html_msg);
This didn't work. So I fiddled with it.
What did work was changing $from to any email address at all. Changing it to '', or just blank, or a non email address all had no impact. It is important to not as well that the email address entered didn't change the value for 'from email address' in the email sent - it always still used the root user email address.
Once I made the $from change, the STORE_NAME change you indicated did impact the reply to name (not the email address) that the email program displayed in the inbox.