Skip to content

Instantly share code, notes, and snippets.

@james2doyle
Last active January 27, 2022 02:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save james2doyle/28c63d3d2587599e47c559941e7da244 to your computer and use it in GitHub Desktop.
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
<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