Accepting Files

You can upload files from your HTML form using formcarry, each file can be up to 5MB in size.

Enabling your Formbox forms to accept file uploads is easy. Just add enctype="multipart/form-data" to your form tag and your ready to start collecting files on your submissions.

We only allow one file per submission right now.

Single input exapmle

<form
  accept-charset="UTF-8"
  action="https://api.formbox.app/s/{your_form_id}"
  enctype="multipart/form-data"
  method="POST"
>
  ...
  <input type="file" name="resume" />
  ...
</form>