For example the the
{user.email} will render the current user email that in your case is [email protected]. If another user access to the form, they will see their email instead, making the tag to work dynamically for each user.While BBCodes are wrapped by
[], tags are wrapped by {} and they are colored in the editor like {user.email} to be easily identificable.You can place them in HTML:
<h3>Hi {user.first_name}</h3>
On fields to autofill their value:
[url name="url_123" value="{site.url}"]
[email name="email_123" value="{user.email}"]
On any field or BBCode attribute:
[check* name="check_123" label="Required to continue using {site.name}"]
I have read and agree with your [url="{site.privacy_policy_url}"]Privacy Policy[/url].
[/check]
Even on actions:
[email to="{site.admin_email}"]
User {user.first_name} has filled the form!
Here are the values entered:
{fields_table}
[/email]