Hi
I need to send all invoice not to the client mail address but to a single predefined address. Yes I know that every time that I send an email I can manually edit the "Email To" textbox but I want to know how can SI read the fixed email address and not the client address.
Any help?
SOLVED
Go to: \templates\default\invoices\ and edit email.tpl as below
For changing "Email From" default address go on line 29 and change:
value="{$biller.email|htmlsafe}"
to
value="[email protected]"
For changing "Email To" default address go on line 35 and change:
value="{$customer.email|htmlsafe}"
to
value="[email protected]"
For changing "Email BCC" default address go on line 41 and change:
value="{$biller.email|htmlsafe}"
to
value="[email protected]"
or
value=""
if you don't need Email BCC