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);
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
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.
Bookmarks