New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

awssum-amazon-ses

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awssum-amazon-ses

AwsSum plugin for Amazon Simple Email Service (SES).

1.2.0
latest
Source
npm
Version published
Weekly downloads
18
-50%
Maintainers
1
Weekly downloads
 
Created
Source

NOTE: AwsSum is now deprecated. Please use aws-sdk instead.

awssum-amazon-ses

This is an AwsSum plugin!

You'll need to add awssum-amazon-ses to your package.json dependencies. Both awssum and awssum-amazon are pulled in as peer dependencies.

Example

List verified email addresses:

var fmt = require('fmt');
var amazonSes = require('awssum-amazon-ses');

var ses = new amazonSes.Ses({
    'accessKeyId'     : process.env.ACCESS_KEY_ID,
    'secretAccessKey' : process.env.SECRET_ACCESS_KEY,
    'region'          : amazonSes.US_EAST_1
});

ses.ListVerifiedEmailAddresses(function(err, data) {
    fmt.dump(err, 'err');
    fmt.dump(data, 'data');
});

Operations

DeleteIdentity

Docs: DeleteIdentity on AWS

DeleteVerifiedEmailAddress

Docs: DeleteVerifiedEmailAddress on AWS

GetIdentityDkimAttributes

Docs: GetIdentityDkimAttributes on AWS

GetIdentityNotificationAttributes

Docs: GetIdentityNotificationAttributes on AWS

GetIdentityVerificationAttributes

Docs: GetIdentityVerificationAttributes on AWS

GetSendQuota

Docs: GetSendQuota on AWS

GetSendStatistics

Docs: GetSendStatistics on AWS

ListIdentities

Docs: ListIdentities on AWS

ListVerifiedEmailAddresses

Docs: ListVerifiedEmailAddresses on AWS

SendEmail

Docs: SendEmail on AWS

SendRawEmail

Docs: SendRawEmail on AWS

SetIdentityDkimEnabled

Docs: SetIdentityDkimEnabled on AWS

SetIdentityFeedbackForwardingEnabled

Docs: SetIdentityFeedbackForwardingEnabled on AWS

SetIdentityNotificationTopic

Docs: SetIdentityNotificationTopic on AWS

VerifyDomainDkim

Docs: VerifyDomainDkim on AWS

VerifyDomainIdentity

Docs: VerifyDomainIdentity on AWS

VerifyEmailAddress

Docs: VerifyEmailAddress on AWS

VerifyEmailIdentity

Docs: VerifyEmailIdentity on AWS

Author

Written by Andrew Chilton - Blog - Twitter.

License

(Ends)

Keywords

awssum

FAQs

Package last updated on 11 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts