praveenpds
praveenpds

Reputation: 2936

Reading deleting SMS from ionic3 / ionic2

In official site, Ionic has introduced SMS ( http://ionicframework.com/docs/native/sms/) but the issue is, by this, we can only SEND SMS. But my use case is to READ, WATCH, DELETE SMS from USER INBOX BOTH in IOS & Android

Any Leads will be appreciated

Upvotes: 0

Views: 840

Answers (1)

Arpit Vasani
Arpit Vasani

Reputation: 1023

I've been using https://github.com/floatinghotpot/cordova-plugin-sms plugin to send / list / intercept / delete / restore SMS.

just add plugin

cordova plugin add cordova-plugin-sms

then you can use any method from following

sendSMS(address(s), text, successCallback, failureCallback);
listSMS(filter, successCallback, failureCallback);
deleteSMS(filter, successCallback, failureCallback); 

for complete docs and example Go here

Keep in mind that this plugin is not free. do read the full readme.md file

Upvotes: 1

Related Questions