Is tutamail.com a Disposable Email?
Whitelistedtutamail.com is a verified legitimate email provider. Emails from this domain are safe to accept.
Details
- Status
- whitelisted
- Added
- 2025-09-03
- Last Checked
- 2026-06-25
- Reason
- tutamail.com
Registration Data
- Registrar
- INWX GmbH
- Registered
- 2015-03-12 (11 years, 3 months)
- Expires
- 2027-03-12
Website Preview
Screenshot may be up to 14 days old.
API Playground
Check tutamail.com programmatically — pick your language, copy, run. No authentication required.
curl https://trashmail-blacklist.org/check/json/tutamail.com
import requests
r = requests.get("https://trashmail-blacklist.org/check/json/tutamail.com")
data = r.json()
print(data["status"]) # blacklisted / whitelisted / unknown
const r = await fetch("https://trashmail-blacklist.org/check/json/tutamail.com");
const data = await r.json();
console.log(data.status); // blacklisted / whitelisted / unknown
<?php
$json = file_get_contents("https://trashmail-blacklist.org/check/json/tutamail.com");
$data = json_decode($json, true);
echo $data["status"]; // blacklisted / whitelisted / unknown
package main
import (
"encoding/json"
"fmt"
"net/http"
)
func main() {
resp, err := http.Get("https://trashmail-blacklist.org/check/json/tutamail.com")
if err != nil {
panic(err)
}
defer resp.Body.Close()
var result struct {
Status string `json:"status"`
Domain string `json:"domain"`
}
json.NewDecoder(resp.Body).Decode(&result)
fmt.Println(result.Status)
}
Click "Run" to fetch the JSON response for tutamail.com.
Also available as xml, yaml, or img — replace json in the URL.
DNS Records
MX Records
- mail.tutanota.de
NS Records
- ns-1506.awsdns-60.org
- ns-1593.awsdns-07.co.uk
- ns-177.awsdns-22.com
- ns-973.awsdns-57.net
SOA Record
- ns-973.awsdns-57.net
- awsdns-hostmaster@amazon.com
A Records
- 185.205.69.12
- 2a10:e000:1::12
TXT Records
- google-site-verification=_KLd1bVkD3miseUONl5WdxjNJtrENi3SGBDFSvRIdKY
- v=spf1 include:spf.tutanota.de -all
SPF Includes
- spf.tutanota.de
Related Domains by Mail Server
15 other domains also
use mail.tutanota.de
as their mail server.
Domain Network
Connections between domains, mail servers, nameservers, and shared infrastructure.
FAQ
Is tutamail.com a disposable email provider?
No, tutamail.com is whitelisted and considered a legitimate email provider.
Can I use tutamail.com for account registration?
tutamail.com is a legitimate email provider and safe to accept for account registrations.
How can I block disposable emails from tutamail.com?
Use the Trashmail-Blacklist API to check tutamail.com before accepting it in your application. Send a GET request to /check/json/tutamail.com to receive the domain status as JSON. Integrate this check into your signup or contact forms to automatically reject disposable email addresses.
What data is available for tutamail.com?
tutamail.com is whitelisted as a legitimate provider. We provide its status, DNS records, and related domains sharing the same mail server.
Block Disposable Emails Automatically
Integrate our free API into your signup flow to detect domains like tutamail.com before they reach your database.