vdeville / free-mobile

Simple PHP page to communicate with Free Mobile API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple library to call Free API SMS

How to use ?

<?php

require_once 'class/freemobile.class.php';`

// Set login (Your Free ID)
$sms->setLogin(119199199);

// Set your acces key (Find it in your account on mobile.free.fr)
$sms->setApikey('YOUR API KEY');

// Set body text message for your SMS
$sms->setBody('Hello world!');

// Send SMS and Get the status code
echo "Status code: " . $sms->sendSMS();

Valentin DEVILLE

About

Simple PHP page to communicate with Free Mobile API


Languages

Language:PHP 100.0%