Features

File uploads

Accept attachments and have them ride along with the notification email.

Turn uploads on in the form settings, then add a file input and set the form's enctype. Attachments are delivered with the notification email; we record the filename, type, and size in your submission history but do not keep the file itself.

upload.html
<form action="https://submit.formemailapi.com/YOUR_FORM_ID" method="POST" enctype="multipart/form-data">
  <input type="text" name="name" required>
  <input type="email" name="email" required>

  <input type="file" name="attachment" accept=".pdf,.png,.jpg">

  <button type="submit">Send</button>
</form>
PlanMaximum size per file
FreeNot available
Pro10 MB
Business25 MB
Files over the limit return 413 with a clear message rather than silently truncating the submission.
Contact form with file uploadA complete styled example, including the file-selector-button CSS and why a missing enctype loses the attachment silently.