# EmailNotificationIntegration

[Snowflake Documentation](https://docs.snowflake.com/en/sql-reference/sql/create-notification-integration)

Manages the configuration for email-based notification integrations within Snowflake. This integration allows specifying recipients who will receive notifications via email.

## Examples

### Python

```python
email_notification_integration = EmailNotificationIntegration(
    name="some_email_notification_integration",
    enabled=True,
    allowed_recipients=["user1@example.com", "user2@example.com"],
    comment="Example email notification integration"
)
```

### YAML

```yaml
email_notification_integrations:
  - name: some_email_notification_integration
    enabled: true
    allowed_recipients:
      - user1@example.com
      - user2@example.com
    comment: "Example email notification integration"
```

## Fields

* `name` (string, required) - The name of the email notification integration.
* `enabled` (bool, required) - Specifies whether the notification integration is enabled.
* `allowed_recipients` (list) - A list of email addresses that are allowed to receive notifications.
* `comment` (string) - An optional comment about the notification integration.
* `owner` (string or [Role](/titan-core/resources/role.md)) - The owner role of the notification integration. Defaults to "ACCOUNTADMIN".


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://titan-core.gitbook.io/titan-core/resources/email_notification_integration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
