Contact form that also submits to PayPal

I need to have a contact form that collects and emails information to the site owner and then proceeds with that information to PayPal. I can do it with an external PHP file, but was wondering if there is a better way to work it into the form plugin?

Hmm… you will probably have to extend the form plugin to do another post-hook type action. Currently the form plugin doesn’t have any such functionality.

You can “redirect” to PayPal by using the Redirect action to forward the user to a page and inside this page, set the Redirect header to automatically redirect the user to PayPal when it its that page

Great, I’ll give that a try!