2 stable releases
| 1.1.0 | Sep 17, 2025 |
|---|---|
| 1.0.0 | Jul 22, 2024 |
#2266 in Web programming
62 downloads per month
16KB
307 lines
SmsAero Rust Api client
Library for sending SMS messages using the SmsAero API. Written in Rust.
Installation:
cargo install smsaero
Usage example:
Get credentials from account settings page: https://smsaero.ru/cabinet/settings/apikey/
use chrono::Utc;
use serde_json::Value;
use std::error::Error;
use smsaero::SmsAero;
const SMSAERO_EMAIL: &str = "your email";
const SMSAERO_API_KEY: &str = "your api key";
fn main() -> Result<(), Box<dyn Error>> {
let client = SmsAero::new(
SMSAERO_EMAIL.to_string(),
SMSAERO_API_KEY.to_string(),
None,
None,
);
// Send SMS message
match client.send_sms("70000000000", "Hello, world!", None, None) {
Ok(result) => println!("{}", result),
Err(e) => eprintln!("SmsAero error: {}", e),
}
// Send Telegram code
match client.send_telegram("70000000000", 1234, Some("SMS Aero"), Some("Ваш код 1234")) {
Ok(result) => println!("{}", result),
Err(e) => eprintln!("SmsAero error: {}", e),
}
Ok(())
}
License
MIT License
Dependencies
~5–21MB
~223K SLoC