Skip to main content
Solved

Embedd an image in Autmations form

  • January 7, 2023
  • 3 replies
  • 111 views

Forum|alt.badge.img+3

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%20copy%202.svg" >

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

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!

Best answer by TheTimeSavingCo

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

3 replies

Greg_F
Forum|alt.badge.img+18
  • Brainy
  • January 9, 2023

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
Forum|alt.badge.img+31

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


Forum|alt.badge.img+3
  • Author
  • New Participant
  • January 10, 2023

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