All systems operational
ET
im@edisontkp.com
Dashboard
notify.ezy.link — multi-channel push platform
TOTAL SUBSCRIBERS
12,400
↑ +340 this week
WEB PUSH
5,200
↑ +120 this week
APP PUSH
4,800
↑ +158 this week
DESKTOP
2,400
↑ +62 this week
🌐
Web Push
Browser-native via Web Push Protocol. Chrome, Firefox, Edge, Safari. No app required.
SENT TODAY
8,421
CTR
6.2%
DELIVERED
98.4%
OPT-IN
14.1%
📱
App Push
Native iOS & Android via APNs and FCM. Rich media, actions, deep links.
SENT TODAY
11,230
CTR
8.7%
DELIVERED
96.1%
OPT-IN
61.3%
🖥️
Desktop
Windows, macOS, Linux via Electron or system APIs. High-visibility alerts.
SENT TODAY
3,840
CTR
12.4%
DELIVERED
99.1%
OPEN RATE
34.2%
Live ActivityView all →
Campaign "New Feature Drop" sent
🌐 Web Push5,200 recipients · 2 min ago
Transactional alert: Order #8821
📱 App Push1 recipient · 5 min ago
Desktop: System maintenance reminder
🖥️ DesktopAll admins · 12 min ago
Segment "Power Users" flash promo
📱 App Push1,240 recipients · 28 min ago
Quick Send
Compose Campaign
Create and schedule multi-channel campaigns
SEGMENT:
All Users
Power Users
Inactive 7d
Malaysian Market
Enterprise
+ Custom
📢Campaign Builder
Sending to 12,400 subscribers
Live Preview
Web — Chrome
🌐
notify.ezy.link
Notification Title
Your message here...
App — iOS
9:41●●● 100%
📢
Your App · Notify
Notification Title
Your message here...
now
Desktop — macOS
🖥️
Notify
now
Notification Title
Your message here...
Open
Later
Dismiss
Analytics
Channel performance and engagement
Notifications Sent
Web
App
Desktop
Web CTR
6.2%
↑ +0.8% vs last week
App CTR
8.7%
↑ +1.2% vs last week
Desktop CTR
12.4%
↑ +2.1% vs last week
Audience
12,400 total subscribers
SUBSCRIBERCHANNELSSUBSCRIBEDLAST SEENSTATUS
ET
im@edisontkp.com
Mar 16
Just now
Active
AT
ahmad.t@company.my
Jan 12
2 hrs ago
Active
SN
siti.n@glc.gov.my
Feb 3
1 day ago
Active
ML
mei.l@sme.com.my
Mar 1
3 hrs ago
Active
DW
d.wong@tech.co
Nov 14
14 days ago
Inactive
Web Push
Browser notifications via Web Push Protocol (VAPID)
// npm install @notify/web-sdk import { Notify } from '@notify/web-sdk'; const n = new Notify({ appId: 'your-app-id', vapidKey: 'your-vapid-key' }); await n.web.subscribe(); await n.send({ channel: 'web', to: 'segment:all', title: 'Hello!', body: 'First push.' });
App Push
Native iOS (APNs) & Android (FCM)
// FCM Worker — notify.ezy.link/fcm/send POST https://notify.ezy.link/fcm/send Authorization: Bearer YOUR_API_SECRET { "token": "device-fcm-token", "title": "Flash Sale!", "body": "50% off ends tonight.", "data": { "screen": "sale" } }
Desktop
Windows, macOS, Linux via Electron / OS APIs
// Electron integration const { Notify } = require('@notify/electron-sdk'); notify.desktop.init({ appId: 'your-app-id' }); notify.desktop.show({ title: 'Reminder', body: 'Standup in 10 min' }); notify.desktop.setBadge(3);