Last active
January 27, 2022 02:08
-
-
Save james2doyle/28c63d3d2587599e47c559941e7da244 to your computer and use it in GitHub Desktop.
An example of using Zapier webhooks to handle file uploads from HTML forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="https://hooks.zapier.com/hooks/catch/1234567/abcd123/" method="post" enctype="multipart/form-data"> | |
<label for="name">Name:</label> | |
<input type="text" name="name" id="name"> | |
<label for="email">Email:</label> | |
<input type="email" name="email" id="email"> | |
<label for="attachment">Attachment:</label> | |
<input type="file" name="attachment" id="attachment"> | |
<input type="submit" name="submit" value="Submit"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment