| Token | Description | Example Output |
|---|---|---|
| {{raw:first_name}} | Visitor's first name | Nick |
| {{raw:last_name}} | Visitor's last name | Bonfiglio |
| {{raw:email}} | Visitor's email address | {{visitor.email}} |
| {{company}} | Visitor's company name | {{visitor.company}} |
| {{job_title}} | Visitor's job title | CEO |
| {{phone}} | Visitor's phone number | +1 555-555-5555 |
| {{lifecycle_stage}} | Current lifecycle stage | Champion |
| {{score}} | AI engagement score | 92 |
| {{segment}} | Assigned segment name | High Intent |
| {{last_seen}} | Last visit timestamp | 2026-03-29 |
| Formatter | Syntax | Example Input | Example Output |
|---|---|---|---|
| titlecase | {{raw:first_name | titlecase}} | nick | Nick |
| uppercase | {{company | uppercase}} | {{visitor.company}} | {{visitor.company}} |
| lowercase | {{job_title | lowercase}} | CEO | ceo |
| date | {{last_seen | date}} | 2026-03-29 | March 29, 2026 |
| currency | {{deal_value | currency}} | 5000 | $5,000.00 |
| truncate | {{bio | truncate:50}} | Long text... | Long text (50 chars) |
| default | {{phone | default:'Not provided'}} | (empty) | Not provided |
| capitalize | {{city | capitalize}} | san francisco | San Francisco |
| strip | {{notes | strip}} | extra spaces | extra spaces |
| first | {{tags | first}} | ['vip','lead'] | vip |
| join | {{tags | join:', '}} | ['vip','lead'] | vip, lead |
| size | {{tags | size}} | ['vip','lead'] | 2 |
| append | {{company | append:' Inc.'}} | {{visitor.company}} | {{visitor.company}} Inc. |
| Use Case | Syntax | Description |
|---|---|---|
| Known vs. Anonymous | {{raw:#if known}}Hello {{raw:first_name}}!{{raw:else}}Hello {{visitor.first_name}}!{{raw:/if}} | Show personalized vs. generic content |
| Customer vs. Prospect | {{raw:#if customer}}Thank you for your business!{{raw:else}}Ready to get started?{{raw:/if}} | Differentiate messaging by stage |
| Has Value Check | {{raw:#if company}}From {{company}}{{raw:else}}Independent{{raw:/if}} | Handle missing field values gracefully |
| Champion Check | {{raw:#if champion}}You're a power user!{{raw:else}}Unlock more features{{raw:/if}} | Reward engaged visitors |