Haiku Text notifications. Geofencing.

uscpsycho

Member
I see that HaikuHelper only sends notifications to ios devices running Haiku. Is there any way to get notifications sent by text message to non-ios devices?
 
Also, is there any way to create rules based on geo-fencing with HaikuHelper? 
 
Yes, you can send notifications to an e-mail to SMS service or via a web API.

HaikuHelper can handle geo-fencing via flags triggered by Haiku or Space. Haiku can trigger just one flag for one location, but Space can trigger any number of locations/flags as well as handle iBeacon locations.
 
In HaikuHelper's scripting interface, you can use a command to send an email to any valid email address. If your carrier has the ability to send a text based on an email message then this should achieve your goal.
 
The basic syntax is:
 
helper.sendMail(controller, recipient, subject, body);
 
For example:
 
helper.sendMail(controller, '[email protected]', 'mysubject', 'mymessage');
 
As for geofencing, I'll leave that discussion to someone more adept than myself.
 
Back
Top