PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Export email to other application

  1. Hello
    I like to export automat. the email from a gravity form to other application , exactly is the emailbuddy.
    It is any way to use the same data captured on gravity ?
    best regards

    Posted 12 years ago on Friday June 17, 2011 | Permalink
  2. You can export entry data to a CSV file. Go to Import/Export and choose Export Entries. You can then select your form, and pick the fields you want to export. It will generate a CSV file that you can then import into other applications.

    Posted 12 years ago on Friday June 17, 2011 | Permalink
  3. thanks but this is a manual process
    I like to make an automatic process if it is possible
    Once the user fillup the gravity form this user must be capture for the othe application
    best regards
    Antonio

    Posted 12 years ago on Friday June 17, 2011 | Permalink
  4. If you want the data to automatically be added to another application or database when a form is submitted you would have to write custom code to do this. You can use the gform_post_submission hook which lets you execute code when the form is submitted and has access to the Entry object which contains the form data. You can then do whatever you want with the data as far as inserting it into another database or integrating with another application.

    You would need to know PHP and be familiar with WordPress hook/filter usage in order to do something like this. Or hire a developer to write the customization for you.

    Documentation for the gform_post_submission hook can be found here:

    http://www.gravityhelp.com/documentation/page/Gform_post_submission

    Documentation for the Entry object can be found here:

    http://www.gravityhelp.com/documentation/page/Entry_Object

    Posted 12 years ago on Friday June 17, 2011 | Permalink