🌐
AWS
docs.aws.amazon.com › amazon simple email service › developer guide › what is amazon ses? › using amazon ses with an aws sdk
Using Amazon SES with an AWS SDK - Amazon Simple Email Service
Provides links to AWS SDK developer guides and to code example folders (on GitHub) to help interested customers quickly find the information they need to start building applications.
🌐
AWS
docs.aws.amazon.com › javascript sdk › developer guide for sdk v2 › sdk for javascript code examples › amazon simple email service examples › sending email using amazon ses
Sending Email Using Amazon SES - AWS SDK for JavaScript
In this example, use a Node.js module to send email with Amazon SES. Create a Node.js module with the file name ses_sendemail.js. Configure the SDK as previously shown.
🌐
npm
npmjs.com › package › @aws-sdk › client-ses
@aws-sdk/client-ses - npm
AWS SDK for JavaScript SES Client for Node.js, Browser and React Native. ... This document contains reference information for the Amazon Simple Email Service (Amazon SES) API, version 2010-12-01.
      » npm install @aws-sdk/client-ses
    
Published   Dec 15, 2025
Version   3.952.0
Author   AWS SDK for JavaScript Team
🌐
AWS
sdk.amazonaws.com › java › api › latest › software › amazon › awssdk › services › ses › SesClient.html
SesClient (AWS SDK for Java - 2.40.8)
Adds an email address to the list of identities for your Amazon SES account in the current Amazon Web Services Region and attempts to verify it. ... Create an instance of SesWaiter using this client. ... Value for looking up the service's metadata from the ServiceMetadataProvider.
🌐
AWS
docs.aws.amazon.com › aws sdk for javascript › developer guide for sdk version 3 › sdk for javascript (v3) code examples › amazon ses examples using sdk for javascript (v3)
Amazon SES examples using SDK for JavaScript (v3) - AWS SDK for JavaScript
import { CreateReceiptRuleCommand, TlsPolicy } from "@aws-sdk/client-ses"; import { sesClient } from "./libs/sesClient.js"; import { getUniqueName } from "@aws-doc-sdk-examples/lib/utils/util-string.js"; const RULE_SET_NAME = getUniqueName("RuleSetName"); const RULE_NAME = getUniqueName("RuleName"); const S3_BUCKET_NAME = getUniqueName("S3BucketName"); const createS3ReceiptRuleCommand = ({ bucketName, emailAddresses, name, ruleSet, }) => { return new CreateReceiptRuleCommand({ Rule: { Actions: [ { S3Action: { BucketName: bucketName, ObjectKeyPrefix: "email", }, }, ], Recipients: emailAddresses
🌐
Maven Repository
mvnrepository.com › artifact › com.amazonaws › aws-java-sdk-ses
Maven Repository: com.amazonaws » aws-java-sdk-ses
The AWS Java SDK for Amazon SES module holds the client classes that are used for communicating with Amazon Simple Email Service
Find elsewhere
🌐
AWS
docs.aws.amazon.com › AWSJavaScriptSDK › latest › AWS › SES.html
Class: AWS.SES — AWS SDK for JavaScript
We recommend that you migrate to AWS SDK for JavaScript v3. For dates, additional details, and information on how to migrate, please refer to the linked announcement. ... Constructs a service interface object. Each API operation is exposed as a function on service. This document contains reference information for the Amazon Simple Email Service (Amazon SES) API, version 2010-12-01.
🌐
Rust
docs.rs › aws-sdk-ses
aws_sdk_ses - Rust
This document contains reference information for the Amazon Simple Email Service (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the Amazon SES Developer Guide.
🌐
AWS
docs.aws.amazon.com › javascript sdk › developer guide for sdk v2 › sdk for javascript code examples › amazon simple email service examples
Amazon Simple Email Service Examples - AWS SDK for JavaScript
We recommend that you migrate to AWS SDK for JavaScript v3. For additional details and information on how to migrate, please refer to this announcement ... Amazon Simple Email Service (Amazon SES) is a cloud-based email sending service designed to help digital marketers and application developers ...
🌐
AWS
docs.aws.amazon.com › aws sdk for java › developer guide for version 2.x › sdk for java 2.x code examples › amazon ses examples using sdk for java 2.x
Amazon SES examples using SDK for Java 2.x - AWS SDK for Java 2.x
For API details, see ListIdentities in AWS SDK for Java 2.x API Reference. The following code example shows how to use ListTemplates. ... There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository ... import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.sesv2.SesV2Client; import software.amazon.awssdk.services.sesv2.model.ListEmailTemplatesRequest; import software.amazon.awssdk.services.sesv2.model.ListEmailTemplatesResponse; import software.amazon.awssdk.services.sesv2.model.SesV2Exception; public class
🌐
AWS
docs.aws.amazon.com › aws sdk for .net › developer guide › sdk for .net code examples › amazon ses examples using sdk for .net
Amazon SES examples using SDK for .NET - AWS SDK for .NET (V3)
The following code example shows how to create a web application that tracks work items in an Amazon Aurora Serverless database and uses Amazon Simple Email Service (Amazon SES) to send reports. ... Shows how to use the AWS SDK for .NET to create a web application that tracks work items in an Amazon Aurora database and emails reports by using Amazon Simple Email Service (Amazon SES).
🌐
Go Packages
pkg.go.dev › github.com › aws › aws-sdk-go-v2 › service › ses
ses package - github.com/aws/aws-sdk-go-v2/service/ses - Go Packages
github.com/aws/aws-sdk-go-v2 · Open Source Insights · Amazon Simple Email Service · Package ses provides the API client, operations, and parameter types for Amazon Simple Email Service. This document contains reference information for the Amazon Simple Email Service (Amazon SES) API, version ...
🌐
Rust
docs.rs › aws-sdk-sesv2
aws_sdk_sesv2 - Rust
The Amazon SES Developer Guide provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically. Examples are available for many services and operations, check out the usage examples. The SDK provides one crate per AWS service.
🌐
AWS
docs.aws.amazon.com › aws sdk for java › developer guide for version 2.x › sdk for java 2.x code examples › amazon ses api v2 examples using sdk for java 2.x
Amazon SES API v2 examples using SDK for Java 2.x - AWS SDK for Java 2.x
For API details, see CreateContactList in AWS SDK for Java 2.x API Reference. The following code example shows how to use CreateEmailIdentity. ... There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository ... try { CreateEmailIdentityRequest createEmailIdentityRequest = CreateEmailIdentityRequest.builder() .emailIdentity(verifiedEmail) .build(); sesClient.createEmailIdentity(createEmailIdentityRequest); System.out.println("Email identity created: " + verifiedEmail); } catch (AlreadyExistsException e) { System.out.println("Email identity already exists, skipping creation: " + verifiedEmail); } catch (NotFoundException e) { System.err.println("The provided email address is not verified: " + verifiedEmail); throw e; } catch (LimitExceededException e) { System.err .println("You have reached the limit for email identities.
🌐
AWS
docs.aws.amazon.com › sdk-for-go › api › service › ses
ses - Amazon Web Services - Go SDK
We recommend that you migrate to AWS SDK for Go v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement. ... Package ses provides the client and types for making API requests to Amazon Simple Email Service.