Socket
Socket
Sign inDemoInstall

awssum-amazon-ses

Package Overview
Dependencies
7
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    awssum-amazon-ses

AwsSum plugin for Amazon Simple Email Service (SES).


Version published
Weekly downloads
9
Maintainers
1
Install size
209 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 11 Jun 2014

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc