extern crate jusibe_rs as jusibe;
use jusibe::JusibeClient;
let jusibe_client = JusibeClient::new("ACCESS_TOKEN", "PUBLIC_KEY");
let response = jusibe_client.send_sms("0807XXXXXX", "mary jane", "New Message");
println!("{:?}", response);
let response = jusibe_client.send_bulk_sms("0807XXXXXX,0808XXXXXX", "mary jane", "New Message");
println!("{:?}", response);
let available_credits = jusibe_client.available_credits();
println!("{:?}", response);
let status = jusibe_client.delivery_status(message_id);
println!("{:?}", response);
The project is currently still in development and any help is appreciated to push the package to the finish line
The MIT License (MIT). Please see License File for more information.