EMAIL · Error
E_RESEND_INVALID
Email payload rejected by Resend (invalid recipient, missing required field, etc.).
— · Resolution
How to recover
Inspect `error.context` for the Resend validation message.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_RESEND_INVALID',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Inspect `error.context` for the Resend validation message.',
docs: 'https://openagentry.dev/errors/E_RESEND_INVALID',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also