πŸͺ‘Parameterized Strings

Parameterized strings let you dynamically insert values.

GPT Driver Placeholders

Placeholder

{{currentDate}}

Details

Placeholder

{{timestamp}}

Details

Placeholder

{{randomNumber()}}

Details

Specify the number of digits in the ()

To see all available placeholders, start typing {{ in the prompt editor and select the relevant one.

Example: How to Generate a New Email Address Using a Timestamp

  • To insert a specific string into your email address, use the following template:

test+{{your_string_here}}@mobileboost.io

Replace {{your_string_here}} with the desired string.

  • If you prefer to use a timestamp in your email address, use the following syntax:

test+{{timestamp}}@mobileboost.io

The {{timestamp}} placeholder will be automatically replaced with the current timestamp.

1. Tap on the email input field
2. Type test+{{timestamp}}@mobileboost.io

Last updated