Dynamic QR Code in Email Template

I created an action having a Google Doc as the email body template. How can I insert a QR code in the Google Doc so that it dynamically generates a QR code based on a value from the record. Here’s what it would look like to merge the <> in the QR code if I could use straight html in the Google Doc:

Does the following Tip by AppSheet team’s @Peter help

[Generating Barcodes](https://community.appsheet.com/t/generating-barcodes/39) Tips & Tricks ?

Try using this site to automatically create barcodes as virtual columns in your apps, in workflow emails, or in generated documents. One way to implement: Create a virtual column, set it as an image type Make the formula equal to below Make the barcode unique to your item ID by replacing the content with your other column values (like product ID, or website) =“https://barcode.tec-it.com/barcode.ashx?data=”&[website] =https://barcode.tec-it.com/barcode.ashx?[data=community.appsheet.com](http://data=community.appsheet.com) An …

1 Like

@Suvrutt_Gurjar
Ok got it. This worked:
LINKURL(concatenate(“https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=”,[Order Num]))
Thanks!

2 Likes