I have an integromat scenario that does the following:
When I get an e-mail I tag it in Evernote with a specific tag
This triggers integromat to put the data from that email into a table called email updates
One of the columns is the content of the email in HTML format.
I then host a web portal via Softr which automatically adds the email added to the email table by using the HTML content in the airtable field.
Although, none of the images work.
Is there a way to make the images appear or perhaps remove the images completely from the email?
Not sure. I would check to make sure you have valid HTML and valid image links. You could probably use an online HTML Validator Tool to help with this.
What do you see instead of the images? Can you post a screen shot?
Do other html tags display properly?
If you see nothing, it may be that html tags are being stripped out. If you see the html tags, it may be that html entities are being encoded. Both practices are common security techniques.
The images were embedded/attached to the original email and referenced using the CID (content-id). The image is showing up as a broken link because the image can no longer be found because the reference no longer makes sense outside of the original email wit the embedded/attached image. You might be able to remove the images with some fancy regular expressions.
If they’re inline, you would need to first need to use the Text Parser tool, which would generate an array of all the image URLs that it could find inline.
Then, after that, you would use the Iterator tool after that, in order to iterate through the array of URL’s.