Nected Docs
Try Nected For Free
  • 5 min QuickStart Guide
  • Getting Started
    • Introduction
    • Core Concepts
    • Use Cases
    • Tech Architecture
    • FAQs
  • INTEGRATIONS
    • Overview
    • Integrations Libraries
      • PostGres
      • MySQL
      • Oracle
      • MS SQL Server
      • Snowflake
      • MongoDB
      • RedShift
      • REST API
      • Google Sheets
      • Slack
    • Managing Integrations
  • DATASETS
    • Overview
    • Managing Dataset
  • Rules
    • Overview
    • Rule Types
      • SimpleRule
      • DecisionTable
      • Ruleset
      • Rule Chain
    • Rule Conditions
    • Rule Actions
    • Concepts
      • Rule Result
      • Test & Publish Rules
    • Add Input Attributes
      • JSON Input Attributes
      • List Input Attributes
  • Triggers
    • Trigger Rule via API
    • Trigger Rule via WebHook
    • Trigger Workflow via API
    • Trigger Workflow via WebHook
    • Scheduler
    • Rule Response Format
  • Workflow
    • Overview
    • Managing Workflow
    • Add Node
      • Action Nodes
        • Rule Node
        • Workflow Node
        • Custom Code Node
        • Database Node
        • REST API Node
      • Control Nodes
        • Loop Node
        • Delay Node
        • Response Node
        • Set Variables Node
        • Switch Block
    • Test & Publish Workflows
  • CODE AND DATABASE QUERIES
    • JavaScript Editor
    • Formula Editor
    • JSON Editor
    • List Editor
    • Excel-like Function
  • Embedded System
    • White-Labelling
    • Embeddable View
  • Self Hosting
    • Overview
    • Infrastructure Sizing
    • New Installation
      • Docker
      • Kubernetes
        • Set Up Kubernetes Cluster on AWS EKS
    • Additional Configuration
      • High Availability
      • Email Setup Guide
    • Upgrade Nected Version
  • Security
    • API Authentication
      • OAuth as part of Authentication under REST API
    • Role Based Access Control (RBAC)
    • SOC 2 Type 2, GDPR, ISO Compliance
  • Audit
    • Audit Trail
    • Approval Flow
    • Version Control & Rollback
    • Import/Export
  • Management API
    • Audit Log API
    • Global Variable API
  • References
    • Attribute Library
    • Global Variables
    • Pre-Configured Tokens
    • Pre-Configured Operators
    • NULL Value Handling/Behavior
    • Troubleshooting Errors
      • Multiple Tabs/Users Edits
      • Limits in Nected
    • Allowed Status Combinations
    • Environments
    • Usage Widget
    • Gen AI
  • ACCOUNT SETTINGS
    • Workspace Setting
      • Date Format and Timezone Settings
Powered by GitBook
On this page
  • Configure Amazon SES
  • Configure Email using SMTP Server
  • Testing the Email Setup
  • Troubleshooting
  1. Self Hosting
  2. Additional Configuration

Email Setup Guide

PreviousHigh AvailabilityNextUpgrade Nected Version

Last updated 1 day ago

This guide explains how to configure Amazon SES (Simple Email Service) as the email provider for your Nected deployment. Using Amazon SES, Nected can securely send notifications and emails through your AWS account.

Configure Amazon SES

Prerequisites

Before configuring Amazon SES in Nected, ensure the following:

  • A deployed Nected instance. If not installed, refer to the .

  • An active AWS account. if you don’t already have one.

  • Amazon SES setup completed:

    1. Enable SES in your AWS account.

    2. Generate the IAM user’s access key and secret key.

💡 Amazon SES enforces sending limits and sandbox restrictions. Refer to Managing your Amazon SES sending limits and Moving out of the sandbox for details.

To enable Amazon SES in your Nected deployment, update the configuration values in your nected-values.yaml Helm file (for Docker Deployment, the file will be nectedconfig/nalanda.env) as described below:

# Replace all the placeholder values with actual values
# Enable email functionality
SEND_EMAIL: "true"

# Set SES as the email provider
EMAIL_PROVIDER: "ses"

# AWS SES credentials
AWS_ACCESS_KEY: "<your_aws_access_key>"
AWS_SECRET_KEY: "<your_aws_secret_key>"
AWS_REGION: "<your_aws_region>"          # e.g., us-west-2

# Sender information
SENDER_EMAIL: "<your_verified_ses_email>"
SENDER_NAME: "Nected Notifications"

Configure Email using SMTP Server

Prerequisites

Before configuring SMTP email settings, ensure the following:

  • Your self-hosted Nected instance is installed. Refer to the Cloud Deployment Guide if not yet set up.

  • You have an active account with an SMTP email service provider (e.g., Gmail, SendGrid, Outlook, etc.).

  • Your email/domain is verified with your chosen SMTP provider.

You can configure your email provider in Nected using the following steps in your Helm deployment:

Edit your Helm values file (nected-values.yaml) (for Docker Deployment, the file will be nectedconfig/nalanda.env) and add the following SMTP email configuration block:

# Replace all the placeholder values with actual values
SEND_EMAIL: "true"
EMAIL_PROVIDER: "smtp"
SENDER_EMAIL: "<your_verified_email@example.com>"
SENDER_NAME: "Nected Notifications"
EMAIL_HOST: "<smtp_host>"
EMAIL_PORT: "<smtp_port>"
EMAIL_USERNAME: "<smtp_username>"
EMAIL_PASSWORD: "<smtp_password>"

Testing the Email Setup

To confirm that your Amazon SES configuration works correctly:

  • Trigger an email notification (e.g., password reset) from your Nected instance.

  • Verify receipt in the recipient inbox.

  • Check the spam/junk folder if the email doesn't appear in the primary inbox initially.

⚠️ Important:

Troubleshooting

If you encounter any issues:

  • Verify SES identity status (email/domain) in your AWS SES Console.

  • Check AWS SES sending quotas (sending rate, daily sending limit).

  • Review Kubernetes pod logs for Nected backend service (kubectl logs <nected-backend-pod>).

Deploy Updated Configuration

Apply these updated values using Helm:

helm upgrade -i nected nected/nected -f values/nected-values.yaml
kubectl rollout restart deploy nected-nalanda

To avoid emails being flagged as spam, ensure your DNS settings include a valid for Amazon SES.

If you still have issues or require further assistance, please contact our support at .

Installation Guide
Create an AWS account
SPF record
assist@nected.ai