Is e.email a Disposable Email?
Unknowne.email is not yet classified in our database.
Details
- Status
- unknown
- Added
- 2025-09-07
- Last Checked
- 2026-07-26
- Reason
- e.email
Registration Data
- Registrar
- Gandi SAS
- Registered
- 2018-07-11 (8 years)
- Expires
- 2027-07-11
Website Preview
Screenshot may be up to 14 days old.
API Playground
Check e.email programmatically — pick your language, copy, run. No authentication required.
curl https://trashmail-blacklist.org/check/json/e.email
import requests
r = requests.get("https://trashmail-blacklist.org/check/json/e.email")
data = r.json()
print(data["status"]) # blacklisted / whitelisted / unknown
const r = await fetch("https://trashmail-blacklist.org/check/json/e.email");
const data = await r.json();
console.log(data.status); // blacklisted / whitelisted / unknown
<?php
$json = file_get_contents("https://trashmail-blacklist.org/check/json/e.email");
$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/e.email")
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 e.email.
Also available as xml, yaml, or img — replace json in the URL.
DNS Records
MX Records
- mail.ecloud.global
- mail.ecloud.global
NS Records
- ns-133-c.gandi.net
- ns-2-a.gandi.net
- ns-69-b.gandi.net
SOA Record
- ns1.gandi.net
- hostmaster@gandi.net
A Records
- 2a01:4f9:c01f:e017::64
- 2a01:4f9:c01f:e0a5::64
- 65.109.243.106
- 95.217.240.171
TXT Records
- v=spf1 mx ip4:135.181.6.248 ip6:2a01:4f9:4b:5387::2 ip6:2a01:4f9:4b:5387:d00b::2 ip4:135.181.139.185 ip6:2a01:4f9:3a:1386:d00b::2 ip6:2a01:4f9:3a:1386::2 ip4:135.181.16.20 ip6:2a01:4f9:4b:544a:d00b::2 ~all
Related Domains by Mail Server
1 other domain also
use mail.ecloud.global
as their mail server.
Domain Network
Connections between domains, mail servers, nameservers, and shared infrastructure.
FAQ
Is e.email a disposable email provider?
e.email has not yet been classified. It is currently unknown whether it is a disposable email provider.
Can I use e.email for account registration?
We have not yet verified e.email. Proceed with caution or use our API to check programmatically.
How can I block disposable emails from e.email?
Use the Trashmail-Blacklist API to check e.email before accepting it in your application. Send a GET request to /check/json/e.email 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 e.email?
e.email is not yet in our database. You can check it via our API or submit it for review through our contact form.
Block Disposable Emails Automatically
Integrate our free API into your signup flow to detect domains like e.email before they reach your database.