Документація макросів
Бібліотека готових тегів для генерації даних, символів, значень. Використовуйте у шаблоні, в темі або тілі листа, для створення складних конструкцій рандомізації.
Shortcode
| Description | Value | Result |
|---|---|---|
|
Inserts the value of a shortcode by its code. The macro code is set arbitrarily when the shortcode is created.
|
|
Alexsandra
|
| The id attribute lets you insert the same shortcode value in different places. If the same shortcode has the same id in several places, the same value is inserted everywhere. Without id, each shortcode picks its line independently. |
|
Alexsandra
Alexsandra
Alexsandra
|
| The id attribute can also link different shortcodes. When different shortcodes share the same id, values are taken from lines with the same line number. This produces consistent combinations of values. |
|
John + Smith
Thomas + Anderson
Tyler + Durden
|
External
| Description | Value | Result |
|---|---|---|
|
Inserts a random value from the external file at the given URL. The link to the external file is set in the code attribute. The file must contain a list of values, one per line.
|
|
Alexsandra
|
Random
| Description | Value | Result |
|---|---|---|
|
Randomly selects one of the variants separated by the | character.
|
|
Good morning!
|
|
The id attribute synchronizes the selection between several tags. Tags with the same id pick the variant with the same line number.
|
|
Hi, Thomas
|
|
The type attribute with the value tag splits the variants by {i}...{/i} tags. Useful when the variants contain | characters.
|
|
Discount 50%.
|
|
The type attribute with the value word splits the content by spaces and randomly picks one word.
|
|
reliable
|
|
The type attribute with the value letter splits the content by characters, including spaces, punctuation and tags.
|
|
l
|
|
The type attribute with the value sentence splits the content by periods and randomly picks one sentence.
|
|
Contact us anytime.
|
|
The type attribute with the value row splits the content by line breaks (Enter). Convenient for long variants.
|
|
Second option text
|
Сontent
| Description | Value | Result |
|---|---|---|
|
Generates one random word.
|
|
hello
|
|
Generates a specific number of words. The number is set in the count attribute.
|
|
hello world apple
|
|
Generates a random number of words within a range. The range is set in the min and max attributes.
|
|
hello world apple
|
|
Generates one random sentence.
|
|
In vel odio feugiat, malesuada quam condimentum, mollis mauris.
|
|
Generates a specific number of sentences. The number is set in the count attribute.
|
|
In vel odio feugiat. Nam accumsan id ante. Nunc vestibulum erat.
|
|
Generates a random number of sentences within a range. The range is set in the min and max attributes.
|
|
In vel odio feugiat. Nam accumsan id ante.
|
|
Generates one paragraph of text.
|
|
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
|
|
Generates a specific number of paragraphs. The number is set in the count attribute.
|
|
Lorem Ipsum is simply dummy text...
Nam accumsan id ante eu imperdiet... |
|
Generates a random number of paragraphs within a range. The range is set in the min and max attributes.
|
|
Lorem Ipsum is simply dummy text...
Nam accumsan id ante eu imperdiet... |
|
Generates a block of text consisting of several paragraphs (3 to 10 by default).
|
|
In vel odio feugiat...
Nam accumsan id ante... Nunc vestibulum erat... |
|
Generates a block of text with a specific number of paragraphs. The number is set in the count attribute.
|
|
In vel odio feugiat...
Nam accumsan id ante... Nunc vestibulum erat... |
|
Generates a block of text with a random number of paragraphs within a range. The range is set in the min and max attributes.
|
|
In vel odio feugiat...
Nam accumsan id ante... |
Name
| Description | Value | Result |
|---|---|---|
|
Generates a random first and last name of any gender.
|
|
Thomas Anderson
|
|
The id attribute synchronizes the result between several tags. Tags with the same id return the same first and last name.
|
|
Thomas Anderson
Thomas Anderson |
|
Generates a first and last name in the specified language. The language is set in the locale attribute (for example, ru_RU).
|
|
Иван Петров
|
|
Generates only the first name. The format is set by the value first in the format attribute.
|
|
Tyler
|
|
Generates only the last name. The format is set by the value last in the format attribute.
|
|
Durden
|
|
Generates only a female first name. The format and gender attributes can be combined.
|
|
Marla
|
|
Generates only a male first name. Works the same way for the last name when format is set to last.
|
|
Tyler
|
|
Outputs the first and last name in the standard order. The order is set by the value both in the format attribute.
|
|
Thomas Anderson
|
|
Outputs the last and first name in reverse order. The order is set by the value both_reverse in the format attribute.
|
|
Anderson Thomas
|
Number
| Description | Value | Result |
|---|---|---|
|
Generates an integer between 0 and 100. May be negative.
|
|
43
|
|
Generates an integer within the specified range. The range is set in the min and max attributes.
|
|
54
|
|
Generates an integer with a specific number of digits. The number is set in the count attribute. The min and max attributes are ignored in this case.
|
|
82363
|
|
The id attribute synchronizes the result between several tags. Tags with the same id return the same number.
|
|
43
43 |
|
Generates a decimal number between 0.00 and 100.00. By default it is output with two digits after the decimal point.
|
|
12,64
|
|
Generates a decimal number within the specified range. The range is set in the min and max attributes.
|
|
128,64
|
|
Generates a decimal number with a specific total number of digits. The number is set in the count attribute. The min and max attributes are ignored in this case.
|
|
123456,78
|
|
Generates a decimal number with a specific number of digits after the decimal point. The number of digits is set in the decimals attribute.
|
|
12,1234
|
Date
| Description | Value | Result |
|---|---|---|
|
Generates a random date and time in the default format.
|
|
2019-01-23 12:34:51
|
|
The id attribute synchronizes the result between several tags. Tags with the same id return the same date.
|
|
2019-01-23 12:34:51
2019-01-23 12:34:51 |
|
Returns the number of seconds since 1970-01-01 00:00:00 (Unix timestamp). The format is set by the value timestamp in the format attribute.
|
|
1437889193
|
|
Generates a date in a custom format. The format is set in the format attribute and is compatible with the PHP date function.
|
|
2019-01-23 12:34:51
|
|
Generates a date within the specified range. The range is set in the min and max attributes. Dates are given in the Y-m-d format.
|
|
2017-01-23 12:34:51
|
|
Returns the current date and time at the moment the email is sent. The now attribute enables the current-time mode.
|
|
2019-05-12 12:34:51
|
String
| Description | Value | Result |
|---|---|---|
|
Generates a string of ASCII characters: uppercase letters, lowercase letters and digits. The default length is 40 to 100 characters.
|
|
qB7vGnnyYADyYx2Gb2...
|
|
The id attribute synchronizes the result between several tags. Tags with the same id return the same string.
|
|
qB7vGnnyYADyYx2Gb2...
qB7vGnnyYADyYx2Gb2... |
|
Generates a string of random length within a range. The range is set in the min and max attributes.
|
|
J1jhuS
|
|
Generates a string of exact length. The number of characters is set in the count attribute.
|
|
BPkPsi5smJir
|
|
Generates a string of uppercase letters. The upper attribute enables uppercase mode.
|
|
SDGIOCXLERP...
|
|
Generates a string of lowercase letters. The lower attribute enables lowercase mode.
|
|
sdjixcownewfme...
|
|
Case, length and range attributes can be combined.
|
|
abc
|
|
Generates a string of digits. The numbers attribute enables digits-only mode.
|
|
12472389729034873...
|
|
Generates a string of special characters. The special attribute enables special-characters mode.
|
|
!@$@#%#$&^@%^%&^...
|
|
Generates a string based on a regular expression. The pattern is set in the pattern attribute and the type changes to regex.
|
|
KX3829-abc
|
Addsimbol
| Description | Value | Result |
|---|---|---|
|
Inserts the specified symbol through a random number of characters within the range from min to max.
|
|
He#llo wor#ld hel#lo wor#ld hello
|
|
The addspace tag inserts a space through a random number of characters within the range from min to max.
|
|
Rand om char acters gener ation macro
|
Repeat
| Description | Value | Result |
|---|---|---|
|
Repeats the content a random number of times (3 to 10 by default).
|
|
word.word.word.word.word.word.
|
|
Repeats the content a random number of times within the specified range. The range is set in the min and max attributes.
|
|
word.word.word.
|
|
Repeats the content an exact number of times. The number is set in the count attribute.
|
|
word.word.word.
|
Chance
| Description | Value | Result |
|---|---|---|
|
Displays the content with a 50% probability. The content is either shown or not. Only the value percent=50 is supported.
|
|
content
|
Shuffle
| Description | Value | Result |
|---|---|---|
|
Shuffles content separated by the | character.
|
|
Juice
|
|
The type attribute with the value tag splits the content by {i}...{/i} tags.
|
|
SushiPastaPizzaBurger
|
|
The type attribute with the value word splits the content by spaces.
|
|
you give up Never gonna
|
|
The type attribute with the value letter splits the content by characters, including digits, spaces and punctuation.
|
|
rxiatM
|
|
The type attribute with the value sentence splits the content by periods.
|
|
Follow the white rabbit. Wake up, Neo. The Matrix has you.
|
|
The type attribute with the value row splits the content by line breaks (Enter).
|
|
Robert Paulson
Tyler Durden Marla Singer |
Encode
| Description | Value | Result |
|---|---|---|
|
Encodes the content into base64 format. Used for safe transmission of data in email headers and URLs.
|
|
SGVsbG8sIFdvcmxkIQ==
|
|
Encodes the content into quoted-printable format. Used in email headers and message bodies to transmit non-ASCII characters.
|
|
=D0=9F=D1=80=D0=B8=D0=B2=D0=B5=D1=82
|
|
Transliterates the content into lowercase ASCII characters. Spaces are replaced with underscores. The charset attribute is ignored in this mode.
|
|
privet_mir
|
|
Re-encodes the content into UTF-8. Used as the standard encoding for most modern systems.
|
|
SGVsbG8sIFdvcmxkIQ==
|
|
Re-encodes the content into Windows-1251 (cp1251). Used for compatibility with older email clients and systems.
|
|
0PDoslXC
|
Locale
| Description | Value | Result |
|---|---|---|
English. Used by default, the locale tag can be omitted. |
|
🇺🇸 Английский |
The locale tag affects all generations after it. Convenient when the email contains many generate calls in a single language. |
|
hello The quick brown fox jumps. |
The locale attribute can be specified directly inside generate. Convenient when one value should be generated in another language without switching the whole email. |
|
hello |
Russian. |
|
🇷🇺 Русский |
Albanian. |
|
🇦🇱 Албанский |
Arabic. |
|
🇦🇲 Армянский |
Azerbaijani. |
|
🇦🇿 Азербайджанский |
Danish. |
|
🇩🇰 Датский |
German. |
|
🇩🇪 Немецкий |
Greek. |
|
🇬🇷 Греческий |
Spanish. |
|
🇪🇸 Испанский |
Finnish. |
|
🇫🇮 Финский |
French. |
|
🇫🇷 Французский |
Hungarian. |
|
🇭🇺 Венгерский |
Italian. |
|
🇮🇹 Итальянский |
Info
| Description | Value | Result |
|---|---|---|
Inserts the email address of the recipient. Works in the Outlook, Mail.com and Gmx.com modules. |
|
|
Inserts the email address of the recipient encoded in Base64. Works in the Outlook module. |
|
Y2xpZW50LmVtYWlsQGNsaWVudC5kb21haW4uY29t |
Inserts the subscriber name from the recipients database. Works in the Outlook, Mail.com and Gmx.com modules. |
|
Client Name |
Inserts the subscriber name automatically generated from the part of the email address before the @ symbol using artificial intelligence. Works in the Outlook module. |
|
Client Name |
Inserts the first name of the Outlook account from which the email is sent. Works in the Outlook module. |
|
Name acc Outlook |
Inserts the last name of the Outlook account from which the email is sent. Works in the Outlook module. |
|
Surname acc Outlook |
Headers
| Description | Value | Result |
|---|---|---|
Inserts the domain from which the mailing is sent. |
|
example.com |
Generates an unsubscribe link. |
|
https://example.com/unsubscribe?id=abc123 |
Inserts the email address of the recipient. Works in the SMTP module. |
|
Rotate Link
| Description | Value | Result |
|---|---|---|
Inserts a link from the rotation list. The link automatically rotates with the frequency set in the section settings. |
|
https://example.com/landing-1 |