Hi, in principle after you activated the Newsletter plugin, you need to set up a page like https://learn.getgrav.org/forms/forms/example-form . The frontmatter in our case looks like
---yaml
title: Newsletter
form:
fields:
-
name: name
label: Name
placeholder: Enter your name
autofocus: on
autocomplete: on
type: text
validate:
required: true
-
name: email
label: Email
placeholder: Enter your email address
type: email
validate:
required: true
buttons:
-
type: submit
value: Submit
-
type: reset
value: Reset
process:
-
subscribe:
filename: newsletter.txt
operation: add
Note the subscribe action. Maybe you need to adjust the settings a bit, since I haven't tested it.
Concerning the plugin, consider it as "pre-alpha" release, since it is not included in the GPM and thus may contain some bugs or even security issues... Further although recently created, it seems to be abandoned for me.