Skip to main content
Best answer

How do I add an image file into email body (Gmail)?

  • January 22, 2025
  • 1 reply
  • 15 views

I’m setting up a very simple 1. New entry (Typeform) → 2. Send email (Gmail/html) Zap, and wanted to put in an image into the email body, where I got stuck at.

How can I do that? 

Best answer by Troy TessaloneBest answer by Troy Tessalone

Hi ​@Yohko 

The image will need to be hosted and publicly available.

You will need to use HTML.

Help: https://www.w3schools.com/tags/tag_img.asp

 

<img src="https://example.com/path-to-image.jpg" alt="Description of image" style="max-width:100%;">

 

View original
Did this topic help you find an answer to your question?

1 reply

Troy Tessalone
Forum|alt.badge.img+14
  • Zapier Expert
  • 30962 replies
  • Answer
  • January 22, 2025

Hi ​@Yohko 

The image will need to be hosted and publicly available.

You will need to use HTML.

Help: https://www.w3schools.com/tags/tag_img.asp

 

<img src="https://example.com/path-to-image.jpg" alt="Description of image" style="max-width:100%;">