#wrapper #1secmail #api

tempmail

Simplify temporary email management and interaction, including message retrieval and attachment downloads

7 releases (1 stable)

1.0.0 Mar 21, 2024
0.2.4 Sep 19, 2023
0.2.2 Aug 28, 2023
0.1.0 Aug 15, 2023

#55 in Email

Download history 5/week @ 2024-02-24 9/week @ 2024-03-09 140/week @ 2024-03-16 23/week @ 2024-03-23 19/week @ 2024-03-30 73/week @ 2024-04-06 4/week @ 2024-04-13

96 downloads per month

MIT license

19KB
267 lines

Tempmail

Version Downloads License Docs

The Tempmail simplifies temporary email management and interaction, including message retrieval and attachment downloads, using the Rust programming language.

Features

  • Create and manage temporary email addresses.
  • Retrieve email messages from the temporary email inbox.
  • Download attachments associated with email messages.
  • Built-in support for popular temporary email domains.
  • Convenient error handling and result types.

Usage

use tempmail::{Domain, Tempmail};

#[tokio::main]
async fn main() {
    // Create a new Tempmail instance with a custom username and domain.
    let tempmail = Tempmail::new("example", Some(Domain::SecMailOrg));

    // Get a list of messages from the temporary email inbox.
    let messages = tempmail.get_messages().await;

    match messages {
        Ok(messages) => {
            for message in messages {
                println!("Id: {}", message.id);
                println!("From: {}", message.from);
                println!("Subject: {}", message.subject);
                println!("Timestamp: {}", message.timestamp);
                println!("Attachments:");
                for attachment in message.attachments {
                    println!("  Filename: {}", attachment.filename);
                    println!("  ContentType: {}", attachment.content_type);
                    println!("  Size: {}", attachment.size);
                }
                println!("Body: {}", message.body);
            }
        }
        Err(error) => {
            eprintln!("Error: {}", error);
        }
    }
}

Installation

To use this library in your project, simply add the following to your Cargo.toml:

[dependencies]
tempmail = "0.2.4"

License

This library is distributed under the terms of the MIT License. See LICENSE for details.

Contributing

Contributions are welcome! Please check out the contribution guidelines before getting started.

Dependencies

~5–19MB
~253K SLoC