Adding an image in email templates

It is possible to add an image to the emails.

There are two options:
1. use the logo in emails:

In this case, it is easiest to place the URL to the image directly in the template.
Follow the steps mentioned below:

1. Copy the HTML below to a notepad (online)

2. Change the URL in the HTML code to the URL of your image / logo (The image must be online for this)

3. Then copy the HTML code

4. Go to ClubBase, "Settings > Organization data" and paste the HTML code under ''Communication > Email template''. Save the template by clicking on "Save" at the bottom of the page.

5. To see what the HTML looks like, a random member can be selected, then click on ''Send email with template''. Fill in test data here and then click on ''View example and send''. In the example you can see how the image / logo is displayed.

Example HTML:

<html>

<body>

<h1>{{ title }}</h1>

<img src='https://i.postimg.cc/cCwYK9xc/symbol-Club-Collect.png'><br>

Dear {{ member_first_name }}!

{{ body }}

</body>

</html>

2. using a different image each time:
In this case, using a placeholder is best, so {{ header_image_url }}.

Did this answer help you?