I have a static website (using Nuxt generate static & ssr), and trying to send email from a form, however on submit I got a 405 error page and no email sent, explained below with code...
contact.vue
<form data-static-form-name="sales">
<label>Email address <input type="email" name="email" /></label>
<label>Message <textarea name="message"></textarea></label>
<!-- If the `<form>` has any custom child component, the hidden input (below) is not included -->
<base-icon icon="my-icon" />
<button type="Submit">submit</button>
<!-- Including it manually fixes the problem -->
<input type="hidden" name="static-form-name" value="sales">
</form>
I suspect you aren't mounting the Plugin correctly. Can you confirm how you've mounted the Plugin by commenting your relevant file for your folder of functions/?
I have a static website (using Nuxt
generate
static & ssr), and trying to send email from a form, however on submit I got a 405 error page and no email sent, explained below with code...contact.vue