#![allow(unused_imports)] use sendgrid2::SendgridClient; use sendgrid2::model::*; #[tokio::main] async fn main() { let client = SendgridClient::from_env(); let campaign_id = 1; let to = "your to"; let response = client .post_campaigns_campaign_id_schedules_test(campaign_id, to) .on_behalf_of("your on behalf of") .send() .await .unwrap(); println!("{:#?}", response); }