You can add images to email templates in Spire, such as your company logo at the end of the email body. Basic HTML knowledge is required.
Steps:
Store the Image:
- Save the image on your computer, for example:
C:\Users\john\Pictures\Kitty2.jpg
- Save the image on your computer, for example:
Copy the Image Path:
- Right-click on the image and select "Copy as path".
Access Email Templates in Spire:
- In Spire, go to Edit > Email Templates.
Edit the Email Template:
- Select and edit the desired email template.
Open Raw HTML:
- Navigate to the Raw HTML tab.
Place the Image:
- Click on the location in the email body where you want the image to be placed.
Insert HTML Code:
- Type the following HTML code, pasting the copied image path in the appropriate place
<img src="paste the copied image path" /></p><body></html>
Using the example from step 1, it will look like:
<img src="C:\Users\john\Pictures\Kitty2.jpg"/></p><body></html>