nuxt-mail icon indicating copy to clipboard operation
nuxt-mail copied to clipboard

TypeError: can't access property "_data", error.response is undefined

Open fexell opened this issue 1 year ago • 0 comments

I'm getting the following error when trying to send from a contact form in Nuxt 3: TypeError: can't access property "_data", error.response is undefined

nuxt.config.ts:

mail: {
    message: {
      to: '***********@***********.com',
    },
    smtp: {
      host: 'smtp.***********.com',
      port: 587,
      auth: {
        user: '***********@***********.com',
        pass: '123***********',
      },
    },
  }

Anyone else having this problem? Is there a way to fix it?

Thanks!

fexell avatar Oct 27 '24 12:10 fexell