Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Embedd an image in Autmations form

Solved
Jump to Solution
2353 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Chris_Nelson
5 - Automation Enthusiast
5 - Automation Enthusiast

Hello! I have read some forum posts about sending emails with images embedded, but I can't seem to get it to work. I have tried

<img src="https://uploads-ssl.webflow.com/628cd622b5f08a77e670bc2d/63b83af885c7d8b02f984929_Artboard%201%20cop...

And I have tried the markdown ![drink](https://uploads-ssl.webflow.com/628cd622b5f08a77e670bc2d/63b83af885c7d8b02f984929_Artboard%201%20cop...)

The above generates the image on preview but does not render live and the latter just creates a link. 

 

Anyone have any tips?

 

Thank you!

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

I think your code's fine, email client's just don't like SVG's generally

Here's a link with some details from CSS-Tricks

See Solution in Thread

3 Replies 3
Greg_F
9 - Sun
9 - Sun

Hello @Chris_Nelson 

Below  format will work in emails:

<img src="https://static.airtable.com/images/homescreen/homepage-sync.jpg" alt="The Airtable logo is connected to logos for Google Calendar, Microsoft Outlook, and more" class="aspect-scale">

 The Markdown syntax for image embed while looking correct in general, will not work in Airtable email. It looks like the Airtable Markdown implementation is not supporting images. 

https://support.airtable.com/docs/using-markdown-in-airtable

Let me know if that works?

 

 

TheTimeSavingCo
18 - Pluto
18 - Pluto

I think your code's fine, email client's just don't like SVG's generally

Here's a link with some details from CSS-Tricks

Chris_Nelson
5 - Automation Enthusiast
5 - Automation Enthusiast

Thanks Adam! Yea the code was correct. I switched to .PNG and we are good to go now. Thank you all!