I'm attempting to integrate Amazon SES into my meteor application. Both locally with meteor run and after bundling and deploying I receive an error. The Method that uses Email.send is called 'sendMessage' in the file server/email.js
Exception while invoking method 'sendMessage' Error: getaddrinfo ENOTFOUND
at Object.Future.wait (/usr/lib/meteor/lib/node_modules/fibers/future.js:322:15)
at smtpSend (app/packages/email/email.js:69:43)
at Object.Email.send (app/packages/email/email.js:111:7)
at sendMessage (app/server/email.js:13:9)
at Meteor.methods.sendMessage (app/server/email.js:28:7)
at _.extend.protocol_handlers.method.exception (app/packages/livedata/livedata_server.js:593:30)
at _.extend.withValue (app/packages/meteor/dynamics_nodejs.js:33:19)
at app/packages/livedata/livedata_server.js:592:46
at _.extend.withValue (app/packages/meteor/dynamics_nodejs.js:33:19)
at _.extend.protocol_handlers.method (app/packages/livedata/livedata_server.js:591:37)
- - - - -
at errnoException (dns.js:37:11)
at Object.onanswer [as oncomplete] (dns.js:124:16)
Am I doing something wrong with my MAIL_URL environment variable? Or is this an issue with Transport Layer Security? Amazon SES says it requires TLS, I don't know if that is the issue. This is my first application dealing with sending Email.