Documentation

form-data

This uses the HTML multipart/form-data content type.

You can have the received email parsed and certain information sent to your webhook as parameters.
This is very useful for receiving attachments or if you want the raw email data along with some parsed information.

Methods

The following methods are supported for form-data webhooks:

  • POST
  • PUT
  • PATCH

Fields

The following fields are sent to your webhook:
If you prefer, you can configure which fields are sent.

  • message_id
  • date
  • return_path
  • delivered_to
  • recipients[] - array of all recipient email addresses (without names)
  • to[] - array of email addresses (without names) as specified in the To header
  • cc[] - array of email addresses (without names) as specified in the Cc header
  • reply_to[] - array of email addresses (without names) as specified in the Reply-To header
  • from - email address (without name) as specified in the From header
  • from_name - name as specified in the From header (if available)
  • sender - email address (without name) as specified in the Sender header
  • subject
  • text_part (not available for GET or HEAD)
  • html_part (not available for GET or HEAD)
  • attachments[] - array of attachments
  • email - raw email data (rfc822 format)