Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. $push = array(
  2. "to" => $userId,
  3. "messages" => array(
  4. array(
  5. "type" => "template",
  6. "altText" => "Box Menu",
  7. "template" => array(
  8. "type" => "carousel",
  9. "columns" => array(
  10. array(
  11. "title" => "Member 1",
  12. "text" => "Nama",
  13. "actions" => array(
  14. array(
  15. "type" => "message",
  16. "label" => "History",
  17. "text" => "/history" // ambil 10 orderan terakhir
  18. ),
  19. array(
  20. "type" => "message",
  21. "label" => "Hallo",
  22. "text" => "/hallo" // perminggu
  23. ))),
  24. array(
  25. "title" => "Member 2",
  26. "text" => "Nama",
  27. "actions" => array(
  28. array(
  29. "type" => "message",
  30. "label" => "History",
  31. "text" => "/History"
  32. ),
  33. array(
  34. "type" => "message",
  35. "label" => "Hallo",
  36. "text" => "/hallo"
  37. )))
  38.  
  39. )))));
  40. $client->pushMessage($push);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement