🌐
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
🌐
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.
Find elsewhere
🌐
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
🌐
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 ...
🌐
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.
🌐
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 ...
🌐
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
sdk.amazonaws.com › java › api › latest › software › amazon › awssdk › services › ses › model › package-summary.html
software.amazon.awssdk.services.ses.model (AWS SDK for Java - 2.33.10)
Represents a request to send a single formatted email using Amazon SES. ... Represents a unique message ID. ... Represents a request to send a single raw email using Amazon SES.
🌐
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.
🌐
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.
🌐
Medium
medium.com › @tempmailwithpassword › how-to-use-the-aws-sdk-to-send-emails-0d0bf246014e
How to Use the AWS SDK to Send Emails
November 18, 2024 - The C# script provided demonstrates how to send an email using Amazon Web Services (AWS) Simple Email Service (SES) via the AWS SDK. Initially, the script sets up AWS credentials using BasicAWSCredentials, which requires your access key and secret key. Then, it configures the SES client with AmazonSimpleEmailServiceConfig to specify the region, and creates a new SES client instance using AmazonSimpleEmailServiceClient.
🌐
GitHub
github.com › aws › aws-sdk-js › blob › master › clients › ses.d.ts
aws-sdk-js/clients/ses.d.ts at master · aws/aws-sdk-js
cloneReceiptRuleSet(params: SES.Types.CloneReceiptRuleSetRequest, callback?: (err: AWSError, data: SES.Types.CloneReceiptRuleSetResponse) => void): Request<SES.Types.CloneReceiptRuleSetResponse, AWSError>; ... * Creates a receipt rule set by cloning an existing one. All receipt rules and configurations are copied to the new receipt rule set and are completely independent of the source rule set. For information about setting up rule sets, see the Amazon SES Developer Guide.
Author   aws