Creating an email notification integration

To send email notifications, use an email notification integration that you create with the CREATE NOTIFICATION INTEGRATION command.

Note

You must use a role that has the global CREATE INTEGRATION privilege to run this command.

For example, to create an email notification integration named my_email_int, execute the following statement:

CREATE NOTIFICATION INTEGRATION my_email_int
  TYPE=EMAIL
  ENABLED=TRUE;
Copy

Restricting the list of email addresses that can receive notifications

If you want to restrict the list of email addresses that can receive notifications through this integration, set ALLOWED_RECIPIENTS to the list of those email addresses. If you do not set ALLOWED_RECIPIENTS, the integration can be used to send notifications to any user in the account, provided that the email address has been verified.

Note

For each email address in ALLOWED_RECIPIENTS, make sure that the email address has been verified. If you specify an email address that hasn’t been verified, the CREATE NOTIFICATION INTEGRATION command fails with an error.

For example, to restrict the notification integration so that email messages can be sent only to first.last@example.com and first2.last2@example.com, set ALLOWED_RECIPIENTS to the list of those addresses:

CREATE NOTIFICATION INTEGRATION my_email_int
  TYPE=EMAIL
  ENABLED=TRUE
  ALLOWED_RECIPIENTS=('first.last@example.com','first2.last2@example.com');
Copy

Note

You can define a maximum of ten email notification integrations for a given account.

For details about the syntax of this command, see CREATE NOTIFICATION INTEGRATION.

Specifying a default list of recipients and a default subject line

If you are using the SYSTEM$SEND_SNOWFLAKE_NOTIFICATION stored procedure to send email notifications, you can configure the notification integration with a default list of email addresses and a default subject line to use. You can override the default list and subject line when you call the stored procedure.

  • To specify a default list of email addresses, set the DEFAULT_RECIPIENTS property of the notification integration.

  • To specify a default subject line, set the DEFAULT_SUBJECT property of the notification integration.

For example, suppose that you want to set up an email notification integration for the following purpose:

  • You want to send most email notifications to person_a@example.com and person_b@example.com, but you also want the ability to send the notifications to the validated email addresses of any users in your account.

  • You want most messages to use the subject line “Service status”, but you want to be able to use a different subject line for specific messages.

To create an email notification for this purpose, execute the following command:

CREATE NOTIFICATION INTEGRATION my_email_int
  TYPE=EMAIL
  ENABLED=TRUE
  DEFAULT_RECIPIENTS = ('person_a@example.com','person_b@example.com')
  DEFAULT_SUBJECT = 'Service status';
Copy

When sending the notification, you can override the list of default recipients and the default subject line. See Overriding the default values in the email notification integration.