awssum-amazon-ses

1.2.0 • Public • Published

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)

Package Sidebar

Install

npm i awssum-amazon-ses

Homepage

awssum.io/

Weekly Downloads

11

Version

1.2.0

License

none

Last publish

Collaborators

  • chilts