Newer Version Available
Email Interactions
| Interaction Name | Description |
|---|---|
| email-update | Captures the email of the site visitor. |
Fields
| Field | Details |
|---|---|
|
|
| name |
|
Email Event
1event.target.dispatchEvent(
2 new CustomEvent('experience_interaction', {
3 bubbles: true,
4 composed: true,
5 detail: {
6 name: 'email-update',
7 email: 'genie@example.com'
8 },
9 })
10);