View Single Post
  #107  
Old 07-30-2014, 01:35 AM
  random's Avatar 
random random is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 79
 

Default Re: Abandoned Cart Reminder module released

Quote:
Originally Posted by microdaq
Hello,

I have had this module installed over the last several months and have recovered 4 orders totaling around $6,000.00.

So the module has paid for itself.

I have implemented the sending out of emails automatically feature.

However, I am getting the following email message each time the cron is run.

"Reminder notification about the coming expiration of the authorization period"

How do I turn this email off? I only want abandoned cart emails to be sent out.



Steve

Actually, that type of notifications is not related to Abandonded Cart Reminder module. It's a built-in feature to notifiy about orders with pre-authorized payments that are going to expire.

Unfortunately, there is no setting to disable these notifications, but you can ask support to modify the code or do it yourself:

1) Open file "include/func/func.payment.php"
2) Find the following code
Code:
if (count($expired) > 0) { $mail_smarty->assign('orderids', implode(", ", $expired)); func_send_mail( $config['Company']['orders_department'], 'mail/order_preauth_expire_subj.tpl', 'mail/order_preauth_expire.tpl', $config['Company']['site_administrator'], false ); return func_get_langvar_by_name('txt_preauth_check_by_ttl', array('orders' => implode(", ", $expired)), false, true); }
3) Change it to
Code:
if (count($expired) > 0) { return func_get_langvar_by_name('txt_preauth_check_by_ttl', array('orders' => implode(", ", $expired)), false, true); }
__________________
Sincerely yours,
Vladimir Petrov
Senior X-Payments Developer
Reply With Quote