hi,

is it possible to have 2 different format of confirmation email? One that send to customer different to one that send to admin.

I want to do this because i want to make email that send to admin to be short and easy to read and take out all the unused information but i want to retain it on customer email.

I understand that i have to edit includes\classes\order.php
and i am thinking of just clone some section of code that use to contract and send email and instead of sending it to both customer and admin, just make it send seperately... not sure if that possible.

Please give me some suggestion of how to go doing this.

i am not sure which code actually use to send email to customer and admin i assume it is
Code:
zen_mail($this->customer['firstname'] . ' ' . $this->customer['lastname'], $this->customer['email_address'], EMAIL_TEXT_SUBJECT . EMAIL_ORDER_NUMBER_SUBJECT . $zf_insert_id, $email_order, STORE_NAME, EMAIL_FROM, $html_msg, 'checkout', $this->attachArray);
thanks