I was trying to explore more features that could be useful and found the following https://smsgateway.me
it is free, it just requires an API to communicate with the Phone app.
Could anyone help? an APP on nextcloud would be great if someone is willing to help.
Install the application smsgateway on your smartphone
After the installation you need to provide your username and password to the app.
—Pay attention if you change your password later , you will need to delete the device, uninstall the app and then re-install it---- There is no option to update username and password into the phone app.
<?php
include "smsGateway.php";
$smsGateway = new SmsGateway('youremail', 'yourpass');
$deviceID = yourdevid_;
$number = '+xxxxxxxxxxxx';
$message = 'Test 1 Hello ';
$options = [
'send_at' => strtotime('+1 minutes'), // Send the message in 1 minute
'expires_at' => strtotime('+1 hour') // Cancel the message in 1 hour if the message is not yet sent
];
//Please note options is no required and can be left out
$result = $smsGateway->sendMessageToNumber($number, $message, $deviceID, $options);
?>
I seek someone to create an APP for nextcloud so that sms can be customized and sent without changing the PHP file every time.
Also have a local copy of the incoming sms.
This could be the better version of the existing https://apps.nextcloud.com/apps/ocsms