> For the complete documentation index, see [llms.txt](https://docs.maketheform.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.maketheform.com/getting-started/premium-features/file-attachments.md).

# File Attachments

{% hint style="info" %}
This is a PREMIUM feature. You must have a membership to use this feature.
{% endhint %}

```html
<input type="file" name="attachment" />
```

You must add enctype="multipart/form-data" to your form, as seen below.

```html
<form action="https://maketheform.com/api/submit" method="POST" enctype="multipart/form-data">
    ...
    <input type="file" name="attachment"/>
    ...
</form>
```
