EMAIL · Error
E_RESEND_AUTH
RESEND_API_KEY missing or invalid.
— · Resolution
How to recover
Create a key at https://resend.com/api-keys and export RESEND_API_KEY.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_RESEND_AUTH',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Create a key at https://resend.com/api-keys and export RESEND_API_KEY.',
docs: 'https://openagentry.dev/errors/E_RESEND_AUTH',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also