Skip to content

fcoedilson/JSMSAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSMSAPI

Send free unlimited SMS using Java

Example:

way2sms.com

SMS sms = new Way2SMS();
sms.login("9999999999", "passwd");
System.out.println(sms.isAuthenticated());
try {
    sms.send("8374566903", "hi!");
    sms.send("8374566903", "hello!!");
} catch (NotAuthenticatedException ex) {
    ex.printStackTrace();
}

160by2.com

SMS sms = new SMS160by2();
sms.login("9999999999", "passwd");
System.out.println(sms.isAuthenticated());
try {
    sms.send("8374566903", "hi!");
    sms.send("8374566903", "hello!!");
} catch (NotAuthenticatedException ex) {
    ex.printStackTrace();
}

fullonsms.com

SMS sms = new FullonSMS();
sms.login("9999999999", "passwd");
System.out.println(sms.isAuthenticated());
try {
    sms.send("8374566903", "hi!");
    sms.send("8374566903", "hello!!");
} catch (NotAuthenticatedException ex) {
    ex.printStackTrace();
}

About

Send free unlimited SMS using Java

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published