I have added the Ionic 3 local notification plugin to my project using these commands:
ionic cordova plugin add cordova-plugin-local-notification
npm install --s
In order to make a daily repeated notification, you need to use an every:"day"
and a firstAt
property with the date when the notification will be triggered for the first time.
Note: Unlike cordova plugin in Ionic 3 firstAt
property needs to be wrapped in trigger
property. You can find more information in Ionic Local Notification Documentation.
Try this code
let year = new Date().getFullYear();
let month = new Date().getMonth();
let day = new Date().getDate();
let time1 = new Date(year, month, day, 10, 00, 0, 0);
let time2 = new Date(year, month, day, 12, 00, 0, 0);
this.localNotifications.schedule([
{
id: 1,
title: 'My first notification',
text: 'First notification test one',
trigger: {firstAt: new Date(time1)},
every: every: "day"
data: {"id": 1, "name": "Mr. A"}
},
{
id: 2,
title: 'My Second notification',
text: 'Second notification on 12 pm',
trigger: {firstAt: new Date(time2)},
every: "day", //"day","hour","minute","week" can be used
data: {"id": 2, "name": "Mr. B"}
}
]);