Skip to content

Commit

Permalink
added SES example
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkokiefer committed Feb 8, 2011
1 parent 9f0c3ae commit bf41532
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/ses.js
@@ -0,0 +1,15 @@
var aws = require("../lib/aws");

ses = aws.createSESClient(yourAccessKeyId, yourSecretAccessKey);

ses.call("GetSendQuota", {}, function(result) {
console.log(JSON.stringify(result));
});

ses.call("GetSendStatistics", {}, function(result) {
console.log(JSON.stringify(result));
});

ses.call("ListVerifiedEmailAddresses", {}, function(result) {
console.log(JSON.stringify(result));
});

0 comments on commit bf41532

Please sign in to comment.