Submitting an invisible Formit form via link possible?

Hi, I need some advice on what might be a strange idea.

I’m sending an email with an action link. When the recipient clicks the link, they’re taken to a page in their browser that immediately submits a form with an email to me. The user is immediately redirected to a thank-you page and shouldn’t actually see the form page itself. The action link in the email contains a parameter that should be included in the email sent to me when the form is submitted.

Is this possible with Formit? Thanks for hints!

I wouldn’t use FormIt for this.
Write a custom snippet that reads the parameter from the request, then sends the email (or logs the request in a custom database table) and finally generates the “thank-you” output.

Thanks for now—I’ll have to give that a try.