katzer / cordova-plugin-local-notifications

Cordova Local-Notification Plugin
Apache License 2.0
2.57k stars 1.75k forks source link

Question : different text for scheduled notification #1647

Closed vogloblinsky closed 6 years ago

vogloblinsky commented 6 years ago

Your Environment

Question

I use this plugin to display a daily notification.

localNotifications.schedule({
    id: notificationId,
    title: TITLE,
    text: TEXT,
    trigger: {
         every: {
               hour: 14,
               minute: 30
         }
    }
});

Is it possible to have a different TEXT for each day ?

Tawpie commented 6 years ago

Not if you use 'every' for the trigger. You'll need to schedule individual notifications, one for each day with its own TEXT message using trigger: at

vogloblinsky commented 6 years ago

Ok thanks, that was my conclusion after reading again the documentation.