Hi,
i want to display a header image in every new email sent. Like i can do with the signatures, in identities, but before the email content.
anyone has an idea how can i do that?
thanks.
I changed the core code.
The function: rcmail_prepare_message_body()
i started $body with the code i desired.
like: $body = '

';
is possible make a plugin to make this?
thanks
Yes you could make a plugin to add a header, if you wanted to add it to compose body for each new email (so it could be removed) using the message_compose_body hook or right before the email is sent (so it would be automatically added every time) by using the message_outgoing_body hook.