use sendgrid::SGClient; use sendgrid::{Destination, Mail}; fn main() { let mut env_vars = std::env::vars(); let api_key_check = env_vars.find(|var| var.0 == "SENDGRID_API_KEY"); let api_key: String = match api_key_check { Some(key) => key.1, None => panic!("Must supply API key in environment variables to use!"), }; let sg = SGClient::new(api_key); let mut x_smtpapi = String::new(); x_smtpapi.push_str(r#"{"unique_args":{"test":7}}"#); let mail_info = Mail::new() .add_to(Destination { address: "you@example.com", name: "you there", }) .add_from("some@some.com") .add_subject("Rust is rad") .add_html("