Web space for my projects and other things.





Sending blind carbon copy (BCC) emails in OpenCart requires edits to the system mail file and as well as the file that will send the email

system/library/mail.php

1.

Find: protected $to;

Add after: protected $bcc;

2.

Find: public function setTo($to) { $this->to = $to; }

Add after: publ...