Incorrect form.md in Twentyfifteen skeleton

Hello
In the file form.md,
the lines
to:
- “{{ config.plugins.email.from }}”
- "{{ form.value.email }}"
should be
to:
- “{{ config.plugins.email.to }}”
- “{{ form.value.email }}”

it took me some time to figure it out. I am new to Grav, and I do not know how to submit such a small bug.

Regards,
Bruno

Hi Bruno, I think the logic is “send the email to the site owner”, in which case config.plugins.email.from and config.plugins.email.to can be equivalent.
That is just an example, but yes, maybe .to is more appropriate

Thanks for the reply !