Hi, I need to configure Grav email plugin so that the contact form on this website http://www.terrenodidanza.it sends all messages to terrenodidanza@fastwebnet.it. For configuration I am using the admin dashboard. Anyone willing to help me? Thanks!
you can define the destination email in the form yaml (page header), if you have it like so:
process:
-
email:
to: '{{ config.plugins.email.to }}'
then configure your Email plugin email to
field to your terrenodidanza@fastwebnet.it
.
Or just change the form yaml like:
process:
-
email:
to: 'terrenodidanza@fastwebnet.it'
Thank you @hugoaf I will give it a try!