Incoming Email Routing
Table of contents
Incoming Email Routing allows to match against incoming emails and apply rules to them.
Commonly used to create email address aliases. For example, emails sent to [email protected]
could endup being received by [email protected]
.
Match against emails
If the email matches, the rule will be applied and the action will get executed.
Catch-All
Matches all emails.
Exact match
The email can be matched against a field, currently they are:
- from: email sender
- to: email recipient
- subject: email subject
The field’s value must be strictly equal to the value you provided in order to match.
Pattern match
The email can be matched against a field, currently they are:
- from: from email address
- to: To email address
- subject: email subject
The provided value is a pattern, which allow to compare against one part of the field’s value. For instance *@example.com
matches: [email protected]
or [email protected]
.
Actions on emails
Drop
The email will be reject with a permanent failure code. This is useful to block undesirable emails.
Forward
The email will be fowarded to the provided email address(es).
Webhook
Information about the email will be sent to the provided endpoint. Find information about webhooks