How To Disable Email Download Links

OK, next question :

How do we turn off the email that is sent with the download links. We prefer our customers to ONLY download directly from the site, which is how our shop has operated for over 10 years. The emails are nice but much too convenient for piracy.

There are two parts of code in the app/functions/fn.cart.php file:



Mailer::sendMail(array(
'to' => $order_info['email'],
'from' => 'company_orders_department',
'data' => array(
'order_info' => $order_info,
'edp_data' => $edp_data,
),
'tpl' => 'orders/edp_access.tpl',
'company_id' => $order_info['company_id'],
), 'C', $order_info['lang_code']);




Just comment them out. E.g.



/*
Mailer::sendMail(array(
'to' => $order_info['email'],
'from' => 'company_orders_department',
'data' => array(
'order_info' => $order_info,
'edp_data' => $edp_data,
),
'tpl' => 'orders/edp_access.tpl',
'company_id' => $order_info['company_id'],
), 'C', $order_info['lang_code']);
*/

THANK YOU! Very much appreciated! :)

You are welcome!