Help

Re: Is it possible to have images in automatic emails?

6641 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Amir-Homayoun_J
5 - Automation Enthusiast
5 - Automation Enthusiast

Hello,

I am wondering whether it is possible to add an image to the body of the emails that are sent using automation? I want to add the logo of the company to the signature.

Thanks
Amir-Homayoun

16 Replies 16

I do this with scripting. I have scripts that generate records in an email table with the body fully formed. This lets me have many different email templates that I use with button fields, but takes up only one of the twenty-five automations.

Thanks @kuovonne I am on the free version, so no scripting. I might get back to this when I have more complicated tasks. Thanks again.

Anna
6 - Interface Innovator
6 - Interface Innovator

Just wanted to chime in to say that I came here looking for this answer (HTML tag) and it worked perfectly for me - both using Airtable’s native email and using the Gmail integration. Yay!

A few notes:

  • Like @JonathanBowen I initially used a URL with underscores in it and it failed - but URLs with no underscores worked great.
  • In the Airtable email, the image was distorted on mobile - but using Gmail, the image dynamically adjusted. I’ll be using Gmail!
Anna
6 - Interface Innovator
6 - Interface Innovator

As I posted above, I was able to successfully implement an HTML image embed code in an Airtable Automation Gmail email by hard-entering the code into the Message. More recently, I took it one step further and used a formula (below) to generate unique a HTML image embed code for each of about 50 recipients, then inserted it as a dynamic field into the Message. At first I thought it didn’t work, but after re-testing the trigger, it did! Hope this helps someone else trying to do something similar in the future.

"<img src=" & {Image Link} & " width=800 alt=Alt Text" & ">"
Thomas_de_Beauc
6 - Interface Innovator
6 - Interface Innovator

I just tried and it worked, you can have underscores in the url if you escape them.

For instance, if your image is https://someurl.org/your_image.png,

<img width="200" height="26" src="https://someurl.org/your\_image.png">

will work.

I just keep getting this 

AJGarcia_0-1686258552968.png

 

Spruce
6 - Interface Innovator
6 - Interface Innovator

Hi @Anna , thank you so much for helping us solve this. I am having an issue though. The image shows up, but the link doesn't work.

This is my version of your suggestion, what am I getting wrong? 

<img src="https://sprucecircularity.com/assets/images/image12.png?v=f55c7e34 & {https://sprucecircularity.com} &" width=150 alt=Alt Text" & ">

I also pulled this HTML code off another website and tried it, but it also only displays the image without being a link:

<a href="https://www.educative.io" target="_blank">

<img src="https://www.educative.io/static/imgs/logos/logoMarkv2.png"> </a>

Thank you so much!
Devon 

Devon