I have a form which is being redirected to another website on submission. This form is auto-submitted when the page is loaded.

I want to replace this form altogether and have the controller create the form contents and submit it to the other website. I do not want the user to see the form.

I do not think RedirectView will work since it puts all the parameters into the request string, I want to emulate a POST.

What is the best way to do this?