@@ -155,7 +155,7 @@ Profile identifiers and other attributes can be set all at once using the `Profi
155155``` kotlin
156156val profile = Profile (
157157 externalId = " USER_IDENTIFIER" ,
158- email = " kermit@example .com" ,
158+ email = " kermit@klaviyo-demo .com" ,
159159 phoneNumber = " +12223334444" ,
160160 properties = mapOf (
161161 ProfileKey .FIRST_NAME to " Kermit" ,
@@ -170,7 +170,7 @@ Or individually with additive fluent setters:
170170
171171``` kotlin
172172Klaviyo .setExternalId(" USER_IDENTIFIER" )
173- .setEmail(" kermit@example .com" )
173+ .setEmail(" kermit@klaviyo-demo .com" )
174174 .setPhoneNumber(" +12223334444" )
175175 .setProfileAttribute(ProfileKey .FIRST_NAME , " Kermit" )
176176 .setProfileAttribute(ProfileKey .CUSTOM (" instrument" ), " banjo" )
@@ -185,15 +185,15 @@ to overwrite it with a new profile object.
185185
186186``` kotlin
187187// Start a profile for Kermit
188- Klaviyo .setEmail(" kermit@example .com" )
188+ Klaviyo .setEmail(" kermit@klaviyo-demo .com" )
189189 .setPhoneNumber(" +12223334444" )
190190 .setProfileAttribute(ProfileKey .FIRST_NAME , " Kermit" )
191191
192192// Stop tracking Kermit
193193Klaviyo .resetProfile()
194194
195195// Start a new profile for Robin
196- Klaviyo .setEmail(" robin@example .com" )
196+ Klaviyo .setEmail(" robin@klaviyo-demo .com" )
197197 .setPhoneNumber(" +5556667777" )
198198 .setProfileAttribute(ProfileKey .FIRST_NAME , " Robin" )
199199```
0 commit comments