I'm trying to figure out how to change the "from" email address on the order confirmations that are sent to admin.

This makes it easier, when i have to "reply" to an email.

I think I can change it in orders.php, in this area, if someone could help decipher the text, that would be great.

Can I replace the lower bold text with the upper bold text?

$html_msg['EMAIL_FIRST_NAME'] = $this->customer['firstname'];

$html_msg['EMAIL_LAST_NAME'] = $this->customer['lastname'];

// $html_msg['EMAIL_TEXT_HEADER'] = EMAIL_TEXT_HEADER;

$html_msg['EXTRA_INFO'] = '';

$zco_notifier->notify('NOTIFY_ORDER_INVOICE_CONTENT_READY_TO_SEND', array('zf_insert_id' => $zf_insert_id, 'text_email' => $email_order, 'html_email' => $html_msg));

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);



// send additional emails

if (SEND_EXTRA_ORDER_EMAILS_TO != '') {

$extra_info=email_collect_extra_info('','', $this->customer['firstname'] . ' ' . $this->customer['lastname'], $this->customer['email_address'], $this->customer['telephone']);

$html_msg['EXTRA_INFO'] = $extra_info['HTML'];



if ($GLOBALS[$_SESSION['payment']]->auth_code || $GLOBALS[$_SESSION['payment']]->transaction_id) {

$pmt_details = 'AuthCode: ' . $GLOBALS[$_SESSION['payment']]->auth_code . ' TransID: ' . $GLOBALS[$_SESSION['payment']]->transaction_id . "\n\n";

$email_order = $pmt_details . $email_order;

$html_msg['EMAIL_TEXT_HEADER'] = nl2br($pmt_details) . $html_msg['EMAIL_TEXT_HEADER'];

}



zen_mail('', SEND_EXTRA_ORDER_EMAILS_TO, SEND_EXTRA_NEW_ORDERS_EMAILS_TO_SUBJECT . ' ' . EMAIL_TEXT_SUBJECT . EMAIL_ORDER_NUMBER_SUBJECT . $zf_insert_id,

$email_order . $extra_info['TEXT'], STORE_NAME, EMAIL_FROM, $html_msg, 'checkout_extra', $this->attachArray);

}

$zco_notifier->notify('NOTIFY_ORDER_AFTER_SEND_ORDER_EMAIL');

}



}

?>