Is it possible to insert an image in the Gmail body?
From a google sheets if I paint a row of a color, is there a way to keep that color? Because what I do is: Get the info from a sheets, and convert it into an image and then paste it in the body of the mail.
The Gmail Node by default allows only adding images as attachments (and not embed/inline).
Some alternative strategies to solve your problem:
1. Use an HTML Table
Since you want to embed a table in your email, you could actually select the HTML “Email Type” in the Gmail Node and build an HTML table there with the data and formatting you need. Probably the easiest solution!
2. Store your images on Google Drive
You could store the images you want to embed on Google Drive, and reference them in the email body with the HTML tag <img src="http://your-image-url">. In this case, pay attention to using the correct “embeddable” URL of the image (you should use the field thumbnailLink that you can retrieve with
the Google Drive Node)
I hope one of these solutions can solve your problem, let me know if you need more assistance
Best
You can send an image inline in the body of a mail using the HTTP node rather than the Gmail node. Here’s a template that shows how to do it. Hope that helps!