Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
1,717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. "[{"name":"john doe","email":"john.doe@mail.com"},{"name":"jane doe","email":"jane.doe@mail.com"}]"
  2.  
  3. %%[
  4. var @json
  5. set @json = AttributeValue("Recipient_List")
  6. ]%%
  7.  
  8. {{.dataobject JsonVar type=variable source=@json maxrows=20}}
  9. {{.data}}
  10. {"target":"@Json"}
  11. {{/data}}
  12. {{/dataobject}}
  13. {{#each JsonVar}}
  14. <p>{{name}}, {{email}}</p>
  15. {{/each}}
  16.  
  17. %%[
  18.  
  19. var @Json
  20. set @Json = '[{"name": "john doe","email": "john.doe@mail.com"},{"name": "jane doe","email": "jane.doe@mail.com"}]'
  21.  
  22. ]%%
  23. {{.dataobject JsonVar type=variable source=@Json maxrows=20}}
  24. {{.data}}
  25. {"target":"@Json"}
  26. {{/data}}
  27. {{/dataobject}}
  28. {{#each JsonVar}}
  29. <br><br>Name: {{name}}
  30. <br>Email: {{email}}
  31. {{/each}}
  32.  
  33. Name: john doe
  34. Email: john.doe@mail.com
  35.  
  36. Name: jane doe
  37. Email: jane.doe@mail.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement