I would like my form to export the entry just submitted as a csv and attach it to the notification e-mail. I need to be able to choose which fields are exported as well. Anyone know how to do this?
I would like my form to export the entry just submitted as a csv and attach it to the notification e-mail. I need to be able to choose which fields are exported as well. Anyone know how to do this?
Bump.
This is not a feature of Gravity Forms. You would have to write a custom function to grab all the values from the form submission, and then create a file and attach that file to the email notification. You can add attachments to the notification by using the gform_user_notification_attachments filter.
http://www.gravityhelp.com/documentation/page/Gform_user_notification_attachments
The function to create a csv of the most recent entry would have to be created.