File Attachments
<input type="file" name="attachment" /><form action="https://api.web3forms.com/submit" enctype="multipart/form-data" method="POST">
...
<input type="file" name="attachment" />
...
</form>Multiple File Attachments
<form action="https://api.web3forms.com/submit" enctype="multipart/form-data" method="POST">
...
<label> Your Resume </label>
<input type="file" name="resume" />
<label> Your Photo </label>
<input type="file" name="photo" />
...
</form>Advanced File Uploader
File upload with Javascript
Here's an example code with Javascript
Last updated