Display Gif image either in email body or embedded app view

In appsheet ,I have a column named Footer with a show type displaying a gif from my drive with the following link:"/Users_Images/STAY ALIVE.gif" .How to display this gif either in bottom of email body template or embedded app view to be sent as dynamic email?

1 2 107
2 REPLIES 2

First, get a shareable link for the GIF. Right-click the GIF in Drive, choose "Get link," set to "Anyone with the link," and copy it. Change the link to https://drive.google.com/uc?export=view&id=FILE_ID (replace FILE_ID).

For the email template, add this at the bottom: <img src="https://drive.google.com/uc?export=view&id=FILE_ID" alt="Stay Alive GIF" />.

For the app view, make sure you have an Image column. Set the column value to the direct link. Then, add this column to a view in AppSheet, and the GIF will show.

Thank you ,I did not test your method ,but I solved it using this expression with a virtual column:

CONCATENATE(
"https://www.appsheet.com/template/gettablefileurl?appName=CheckList-618890389&tableName=Checklist&fi...",
[Footer]
)

Refferring to the column Footer which has the following content and initial value:"Users_Images/STAY ALIVE.gif"

 

Top Labels in this Space