kasperhartwich / php-smssender
This is my take on a sms sender interface, that in time should support a lot of different sms gateways.
Installs: 44 729
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 2
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-04-29 00:29:29 UTC
README
This is my take on a sms sender interface, that in time should support a lot of different sms gateways.
These are at the moment supported:
- CPSMS
- SMSgateway.dk
- SureSMS.com
- Inmobile.dk
Example
require 'lib/CPSMS.php'; $sms = new CPSMS('username', 'password'); $sms->recipient = '87654321'; $sms->sender = 'php-smssender'; $sms->message = 'Here comes the sun.'; $sms->send();