Jan 07, 2023 08:07 AM
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
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!
Solved! Go to Solution.
Jan 08, 2023 11:16 PM
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
Jan 08, 2023 11:00 PM
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?
Jan 08, 2023 11:16 PM
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
Jan 10, 2023 11:07 AM
Thanks Adam! Yea the code was correct. I switched to .PNG and we are good to go now. Thank you all!