I am writing a Nodejs application that should send email. So far, I have used Postfix in conjunction with a Nodejs module called Nodemailer to send email through Amazon SAS.
Postfix processes the DKIM subscription, but now I want to get rid of the postfix and just use Nodemailer to send email through Amazon SAS.
My only problem now is finding a way to sign emails in Nodejs. I was thinking of running the opendkim command using "exec" in node, but couldn't figure it out. From the search there are also no modules for this.
Can someone help me with this?
Ryan
source share