Still having problems with the email header.

I have 2 sites, and what to use separte email headings.

The override of the store logo for email isn't woring.
-------------------------------------
Originally Posted by cablesimple
jkovar,
The solution I used for this was to create an email_header.gif (or whatever name you want) in each store's templates/[template_name]/images folder.

Then in the includes/config_sites/[site config file] include this line:
define('EMAIL_HEADER_IMAGE','includes/templates/'. $template_dir. '/images/email_header.gif');

----------------------

So i tryed to replace this in email\email_template_checkout.html

<!-- Header Section -->
<div class="header">
<img src="email/header.jpg" alt="logo" />
</div>
-------

in this

<!-- Header Section -->
<div class="header">
<img src="EMAIL_HEADER_IMAGE" alt="logo" /></div>

but it's not working, is email_header_image defined in the admin ?

Has someone a clue ?