Skip to content

Sends SMS messages to any phone number using Google Voice account

Notifications You must be signed in to change notification settings

hbattat/GeeVeeAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GeeVeeAPI

Sends SMS messages to any phone number using Google Voice account

#How to use? Include the API file src/GeeVee/GeeVeeAPI.php

#Examples

$geevee = new GeeVee\GeeVeeAPI("YOUR_EMAIL_ADDRESS@gmail.com", "YOUR_PASSWORD");

Send SMS

$geevee->sendSMS('1234561234', 'Hello there');

Get all messages

$all = $geevee->getAllMessages();

Get only messages form certain number

$from_number = $geevee->getMessagesFrom('1234561234');

Get only messages from multiple numbers

$numbers = array('1234561234', '5555555555');
$from_numbers = $geevee->getMessagesFrom($numbers);

Mark a message as read

$geevee->markAsRead($message_id);

Delete message

$geevee->delete($message_id);

About

Sends SMS messages to any phone number using Google Voice account

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages