mailjet_api_wrapper 0.5.1

Unofficial wrapper for Mailjet's API
Documentation
1
2
3
4
5
6
7
8
9
10
11
# GDPR Delete contacts

```rust
use mailjet_api_wrapper::Mailjet;

// Create mailjet client
let mailjet = Mailjet::from_api_keys("your_key", "your_secret");

// Delete contact from id
mailjet.contact_delete(187464256).unwrap_or_default();
```