@orchesty/connector-amazon-apps-simple-email-service
v2.0.0
Published
[](https://www.npmjs.com/package/@orchesty/connector-amazon-apps-simple-email-service) [, a cloud email service provider for bulk and transactional email sending.
Application Type
Basic (AWS IAM credentials)
This connector authenticates using AWS IAM access key and secret. Requests are made through the AWS SDK SESClient.
| Field | Description |
|---|---|
| Key | AWS IAM Access Key ID |
| Secret | AWS IAM Secret Access Key |
| Region | AWS region of your SES configuration (e.g. eu-west-1) |
| Custom Endpoint | Optional custom endpoint URL for SES-compatible services |
Components
| Class | Type | Description |
|---|---|---|
| SESSendEmail | Connector | Sends an email via Amazon SES using SendEmailCommand |
Setup
Credentials
- Log in to the AWS Management Console.
- Navigate to IAM → Users and create a user with programmatic access. Attach a policy with at minimum the
ses:SendEmailpermission. - Copy the Access Key ID and Secret Access Key.
- Make sure your sending domain or email address is verified in Amazon SES → Verified identities.
- In Orchesty, open the Amazon SES application settings and fill in:
- Key — paste your Access Key ID
- Secret — paste your Secret Access Key
- Region — select the AWS region where SES is configured
- Custom Endpoint — leave empty unless using a custom SES-compatible endpoint
API Documentation
Amazon SES API Reference: https://docs.aws.amazon.com/ses/latest/APIReference/
Installation & Usage
Install the package:
npm install @orchesty/connector-amazon-apps-simple-email-service @orchesty/nodejs-sdk
# or
pnpm add @orchesty/connector-amazon-apps-simple-email-service @orchesty/nodejs-sdkRegister the application and nodes in your Orchesty DI container:
import { container } from '@orchesty/nodejs-sdk';
import SESApplication from '@orchesty/connector-amazon-apps-simple-email-service/dist/SESApplication';
import SESSendEmail from '@orchesty/connector-amazon-apps-simple-email-service/dist/Connector/SESSendEmail';
const sesApp = new SESApplication();
container.setApplication(sesApp);
container.setNode(new SESSendEmail(), sesApp);License
This connector is released under the Apache License 2.0. See the LICENSE file for the full license text.
Contributing
Contributions are welcome! This connector is part of the open-source Orchesty Node.js Connectors monorepo.
For guidelines on how to create or update connectors — including project setup, coding conventions, and how to write tests — please refer to the Contributing to Connectors guide.
All contributions should include:
- Source code in
src/following the existing connector structure - Tests in
src/**/__tests__/withinput.json,mock.json, andoutput.jsonfixtures - An updated
CHANGELOG.mdentry
