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