Change logo in transactional email

magento

Solution

To change this globally, go to:

System > Configuration > General > Design > Transactional Emails

and upload it there. I'm using Magento ver. 1.9.0.1

You Should have an image in your folder called `logo_email.gif` same as `logo_print.gif` for the "Print View" pages.

So:

"/public_html/skin/frontend/fortis/default/images/logo_email.gif"

Problem

I have a transactional email with the following code: ``` <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td> ``` and a logo in /public_html/skin/frontend/fortis/default/images called logo.png What I should put in store url="" and in {{var logo_url}} to show my logo in the transactional email?

Original source