Stop form saving to database / reports
PermalinkI would like to simply send a form submission by email and not save a report.
Is there a way to do this without editing the code?
Thanks
Perhaps this configuration setting is just to stop the system logging emails that are sent?
Thank you for your help so far.
I also looked at the legacy form in Concrete5 v8 because it dispatches an on_form_submission event so I thought by using that event it would be possible to delete the report after submission. But it's useless for this purpose as it doesn't include the newly added answer set ID.
concrete.log.emails
This value should be set to false. You can do that using the CLI (https://documentation.concrete5.org/developers/appendix/cli-commands)
concrete/bin/concrete5 c5:config set concrete.log.emails false
Otherwise into /application/config/concrete.php. Read more about that here:
https://documentation.concrete5.org/developers/configuration-and-key...