zipwhip-rs 0.3.0

A fast, asynchronous, and safe wrapper around the Zipwhip API
Documentation

crates.io Documentation Download Version License

Features

  • Asynchronous SMS/MMS Client
  • Low-Latency, High Throughput chatbots
  • Bulk SMS/MMS functions

Send an SMS

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
  // Create API Client
  let zw_client = zipwhip_rs::Client::with_key("<zipwhip session key>");
  // Send SMS
  zw_client.send_sms("+12064517010", "Hello, Zipwhip-rs!").await?;
  
  Ok(())
}