## What was reported
Issue resend/resend-node#538 (closed, 9 comments): Sometimes the `ErrorResponse` contains an `.error` property, sometimes a `.message` property, as a response to `resend.emails.send`.
I'm sending emails with `const {error} = await resend.emails.send({`
Correct `ErrorResponse`:
```ts
{
statusCode: 403,
message: 'You can only send testing emails to your own email address ([email redacted]). To send emails to other recipients, please verify a domain at resend.com/domains, and change the `from` address to an email using this domain.',
name: 'validation_error'
}
```
Unexpected `ErrorResponse`:
```ts
{
statusCode: 403,
er
## The verified resolution
[gabrielmfern (maintainer)]: This seems to've been a regression on the API itself, which we just fixed. If anyone still experiences this, please let me know and I'll reopen.