Configure Automatic Emails
What is a fidesops Email Connection?
Fidesops supports configuring third party email servers to handle outbound communications.
Supported modes of use:
- Subject Identity Verification - sends a verification code to the user's email address prior to processing a subject request. For more information on identity verification, see the Privacy Requests guide.
- Erasure Request Email Fulfillment - sends an email to configured third parties to process erasures for a given data subject. See creating email Connectors for more information.
- Privacy Request Receipt Notification - sends an email to user's email address with privacy request receipt notification.
- Privacy Request Review Notification - sends an email to user's email address upon privacy request review, including rejection reason if applicable.
- Privacy Request Completion Notification - sends an email to user's email address with privacy request completion notification, including a download link to data package, for access requests. For more information on request completion notification, see the Privacy Requests guide.
Prerequisites
Fidesops currently supports Mailgun for email integrations. Ensure you register or use an existing Mailgun account in order to get up and running with email communications.
-
Generate a Mailgun Domain Sending Key
Follow the Mailgun documentation to create a new Domain Sending Key for fidesops.
Note
Mailgun automatically generates a primary account API key when you sign up for an account. This key allows you to perform all CRUD operations via Mailgun's API endpoints, and for any of your sending domains. For security purposes, using a new domain sending key is recommended over your primary API key.
Configuration
Create the email config
POST api/v1/email/config | |
---|---|
1 2 3 4 5 6 7 8 |
|
Field | Description |
---|---|
key |
Optional. A unique key used to manage your email config. This is auto-generated from name if left blank. Accepted values are alphanumeric, _ , and . . |
name |
A unique user-friendly name for your email config. |
service_type |
The email service to configure. Currently, fidesops supports mailgun . |
details |
A dict of key/val config vars specific to Mailgun. |
domain |
Your unique Mailgun domain. |
is_eu_domain |
Optional. A boolean that denotes whether your Mailgun domain was created in the EU region. Defaults to False . |
api_version |
Optional. A string that denotes the API version. Defaults to v3 . |
Add the email configuration secrets
POST api/v1/email/config/{email_config_key}/secret | |
---|---|
1 2 3 |
|
Field | Description |
---|---|
mailgun_api_key |
Your Mailgun Domain Sending Key. |
Email third party services to mask data
Once your email server is configured, you can create an email connector to send automatic erasure requests to third-party services. Fidesops will gather details about each collection described in the connector, and send a single email to the service after all collections have been visited.
Note
Fidesops does not collect confirmation that the erasure was completed by the third party.
Create the connector
Ensure you have created your email configuration prior to creating a new email connector.
PATCH api/v1/connection | |
---|---|
1 2 3 4 5 6 7 8 |
|
Field | Description |
---|---|
key |
A unique key used to manage your email connector. This is auto-generated from name if left blank. Accepted values are alphanumeric, _ , and . . |
name |
A unique user-friendly name for your email connector. |
connection_type |
Must be email to create a new email connector. |
access |
Email connectors must be given write access in order to send an email. |
Configure notifications
Once your email connector is created, configure any outbound email addresses:
PUT api/v1/connection/{email_connection_config_key}/secret | |
---|---|
1 2 3 4 |
|
Field | Description |
---|---|
{email_connection_config_key} |
The unique key that represents the email connection to use. |
to_email |
The user that will be notified via email to complete an erasure request. Only one to_email is supported at this time. |
test_email |
Optional. An email to which you have access for verifying your setup. If your email configuration is working, you will receive an email with mock data similar to the one sent to third-party services. |
Configure the dataset
Lastly, configure the collections and fields you would like to request be erased or masked. Fidesops will use these fields to compose an email to the third-party service.
PUT api/v1/connection/{email_connection_config_key}/dataset | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
Field | Description |
---|---|
fides_key |
A unique key used to manage your email dataset. This is auto-generated from name if left blank. Accepted values are alphanumeric, _ , and . . |
name |
A unique user-friendly name for your email dataset. |
description |
Any additional information used to describe this email dataset. |
collections |
Any collections and associated fields belonging to the third party service, similar to a configured fidesops Dataset. If you do not know the exact data structure of a third party's database, you can configure a single collection with the fields you would like masked. Note: A primary key must be specified on each collection. |