Still send emails to disposable email addresses

This commit is contained in:
Konstantin Wohlwend 2026-03-25 23:45:16 -07:00
parent 502823df0a
commit af783e1df9

View File

@ -110,7 +110,7 @@ export async function checkEmailWithEmailable(
const raw = await verifyWithRetries(() => client.verify(email), 4, retryDelayBase);
const response = validateVerifyResponse(raw);
if (response.state === "undeliverable" || response.disposable) {
if (response.state === "undeliverable") {
console.log("Checked email address with Emailable and found it to be not deliverable", { email, response });
return { status: "not-deliverable", emailableResponse: response, emailableScore: response.score };
}