Getting startedSDKs and AI toolsRustCopy pageOfficial Rust SDK — cargo add resentInstall the Resent client: cargo add resentcargo add tokio --features macros,rt-multi-thread use resent::{Resent, SendEmail};#[tokio::main]async fn main() -> Result<(), resent::Error> { let resent = Resent::new(std::env::var("RESENT_API_KEY").expect("RESENT_API_KEY")); let result = resent .emails() .send( SendEmail::new( "Acme <noreply@yourdomain.com>", ["you@example.com"], "Hello World", ) .html("<strong>It works!</strong>"), ) .await?; println!("{:?}", result.submission_id); Ok(())} Links crates.io/crates/resent github.com/resentmail/resent-rust docs.rs/resent Quickstart Node.js SDK