Created
February 10, 2023 12:08
-
-
Save brennandunn/da2bce58af16d5577c82349221d587d9 to your computer and use it in GitHub Desktop.
Random number generation in ConvertKit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign randomNumber = "now" | date: "%9N" | modulo: 10 | plus: 1 %} | |
{%- if randomNumber < 3 -%} | |
Message A | |
{%- else -%} | |
Message B | |
{%- endif -%} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment