guerrillamail-client

An async Rust client for the GuerrillaMail temporary email service.
Features
- 🚀 Async/await - Built on tokio and reqwest
- 📧 Create temporary emails - Generate disposable email addresses
- 📬 Check inbox - Retrieve messages from your temporary inbox
- 🗑️ Delete emails - Clean up when done
- 🌐 Proxy support - Route requests through HTTP proxies
Installation
Add to your Cargo.toml:
[]
= "0.1"
= { = "1", = ["full"] }
Quick Start
use Client;
async
If you need custom configuration (proxy, TLS, user agent), use the builder:
use Client;
let client = builder
.proxy
.danger_accept_invalid_certs
.user_agent
.ajax_url
.build
.await?;
Acknowledgements
This library is a Rust port of GuerrillaMail-Python.
License
MIT License - see license for details.