File uploads are available on paid plans only.
enctype="multipart/form-data" to your <form> element and include one or more <input type="file"> fields:
Multiple File Inputs
You can include as many separate file inputs as you need. Give each one a distinctname so formcarry can attach each file individually to the submission:
Multiple Files with One Input
If you want users to select several files at once from a single file picker, add themultiple attribute to a single input:
File Uploads with JavaScript
When submitting a form with files via JavaScript, use the browser’s built-inFormData API to construct the request body. See the React example for a complete implementation using FormData.