0

Until recently we were using the BarcodeURL ampscript function to generate readable barcodes for a ticketed event. The business now want to switch to a QR code instead.

As Marketing Cloud does not have a native ampscript function for generating QR codes, I found a series of solutions, listed here, and another on the IdeaExchange.

I just wondered if anyone has any experience with the reliability of any of these options - it's important that these tickets are generated correctly, and we'd be using them for up to 200,000 event tickets across ~50 events. Are any of these options objectively better than the others?

1
  • 3
    I don't think anyone here can speak on behalf of any of the services referenced in the resources you are referring to. That said, you should be aware, that the URLs are not accessed at send-time, as they only hold references to the image of the QR code on the service. Hence the load will be more distributed than e.g. sending 300.000 emails in 5 minutes. They are only requested upon emails being opened (excluding some cases of a.o. Gmail prefetching images). Commented Jan 31, 2023 at 12:10

1 Answer 1

1

Have you tried the DataMatrix barcodes generated from the AMPscript barcodeURL function? It's similar looking and can encode thousands of characters.

If you're just needing to encode a link, it may work for you.

%%[ set @URL = "https://sprignaturemoves.com/category/salesforce-marketing-cloud" set @dataMatrixBarcodeImage = BarcodeURL(@URL, "DataMatrix", 200, 200) ]%% <img src="%%=v(@dataMatrixBarcodeImage)=%%"> 

DataMatrix barcode

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.