awssum-amazon-ses
v1.2.0
Published
AwsSum plugin for Amazon Simple Email Service (SES).
Downloads
67
Maintainers
Readme
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
- Copyright 2011-2013 Apps Attic Ltd. All rights reserved.
- Copyright 2013 Andrew Chilton. All rights reserved.
(Ends)