10 minute mail with code

A blast from the past!

10 Minute Mail is a temporary email service that allows you to create a disposable email address that expires after 10 minutes. Here's the code to create a 10 Minute Mail account:

Note: This code is for the original 10 Minute Mail service, which is no longer actively maintained. You may encounter issues or errors when trying to use it.

HTML:

<form action="https://10minutemail.com/create.php" method="post">
  <input type="text" name="email" placeholder="Your email address">
  <input type="submit" value="Create">
</form>

JavaScript:

function create10MinuteMail() {
  var email = prompt("Enter your email address:");
  if (email) {
    var form = document.createElement("form");
    form.action = "https://10minutemail.com/create.php";
    form.method = "post";
    var input = document.createElement("input");
    input.type = "text";
    input.name = "email";
    input.value = email;
    form.appendChild(input);
    document.body.appendChild(form);
    form.submit();
  }
}

How to use:

  1. Open your browser's developer tools (F12) and create a new HTML file.
  2. Copy the HTML code above and paste it into the HTML file.
  3. Run the JavaScript code by clicking the "Create" button or by pressing F5.
  4. Enter your desired email address in the prompt box.
  5. The 10 Minute Mail service will create a temporary email address, which will expire after 10 minutes.
  6. You can use this email address to sign up for services, receive temporary verification codes, or test email functionality.

Important: Please note that 10 Minute Mail is no longer actively maintained, and you may encounter issues or errors when trying to use it. Additionally, some services may not accept temporary email addresses or may have restrictions on their use.