Jump to content

How to email copy of Terms and conditions for each shipped order?


Recommended Posts

The customers has to agree on the Terms and conditions before making the order. But the seller has no proof that the Terms and conditions where sent to the customer together with the order. I always put the Terms and conditions in the "Order Shipped" conformation mail, but I want the system to send a e-mail copy the shop.

 

How can this be done?

 

This should be an option in PS. I could be very important later if the customer report a problem.

Edited by xderia (see edit history)
Link to comment
Share on other sites

  • 1 year later...

 

Solution:

 

/www/classes/Mail.php
 
add in line 168 (PS 1.6.0.9):
 
if($template == 'shipped')
{$to_list->addTo('[email protected]', 'admin');}
 
Add before:
 
if(isset($bcc)) {
$to_list->addBcc($bcc);
}

 

Hi

 

Anyone knows how to make the email to the shop as BCC ?

 

(SOLVED)

 

I changed it to:

 

if($template == 'shipped')
{$to_list->addBcc('[email protected]', 'admin');}
 
And it seems to work
Edited by Bonjovi67 (see edit history)
Link to comment
Share on other sites

  • 1 year later...
×
×
  • Create New...