Send Push notifications using ionic.io

Hello guys, I am trying to follow this doc http://docs.ionic.io/v2.0.0-beta/docs/push-full-setup
I got the token, and when I used the CURL to send notification it went great, my question is, I want to send notifications using ionic.io but without saving users, I just want to send to all users, I tried without using the ionic user its not working, how I can do it ?
Thanks

1 Like

I also had this issue. There is a key you can use which is supposed to send to all users without using the Ionic user model or including all registered tokens in a push. See http://docs.ionic.io/v2.0.0-beta/docs/anatomy-of-a-push-notification . However from my experience it seems ‘send_to_all: true’ only works on devices once you have done at least one push that includes their unique token. If you send a push including the devices token it receives this push and will then receive all subsequent pushes that just use ‘send_to_all: true’ but not until you do that initial push with the token which makes the ‘send_to_all: true’ ineffective as it stands.