Changing Email Notification Addressee

Hi

Currently, my automatic emails confirming order status' begin with:

Dear "shipping address first name"

I would like them to begin with:

Dear "Billing address first name"

For example a paying customer called Bill Jacobs wants and order sent to his son John Jacobs at a different address. At the moment the Order Processed email will begin with "Dear John". I would like it to always address the billing name, in this case "Dear Bill".

I believe the change might need to be made in order_notification.tpl (not certain) but not sure of the exact syntax required.

Thanks in advance

$order_info.b_firstname

in

design/themes/responsive/mail/orders/invoice.tpl

change instances of

{$order_info.s_firstname}

to

{$order_info.b_firstname}

in
design/themes/responsive/mail/orders/invoice.tpl
change instances of
{$order_info.s_firstname}
to
{$order_info.b_firstname}

Sorry for the late reply but thank you tbirnseth and the tool. Really appreciate you taking the time to help out. : )