Skip to content
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.
/ awssum-amazon-ses Public archive

(deprecated: use aws-sdk) NodeJS module to talk to Amazon Simple Email Service (SES).

License

Notifications You must be signed in to change notification settings

chilts/awssum-amazon-ses

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

About

(deprecated: use aws-sdk) NodeJS module to talk to Amazon Simple Email Service (SES).

Resources

License

Stars

Watchers

Forks

Packages