More email retries

This commit is contained in:
Konstantin Wohlwend 2026-02-11 19:12:03 -08:00
parent 92087c8a5c
commit 95d383951a

View File

@ -300,7 +300,7 @@ export async function lowLevelSendEmailDirectViaProvider(options: LowLevelSendEm
}
return result;
}, 3, { exponentialDelayBase: 2000 });
}, 5, { exponentialDelayBase: 1000 });
} catch (error) {
if (error instanceof DoNotRetryError) {
return Result.error(error.errorObj);