1
我使用內置在Meteor.js功能來發送電子郵件報名和密碼重置郵件:與DKIM簽名的電子郵件流星
流星使用MailComposer從NodeMailer發送郵件,這個包似乎是support email signing。我可以在Meteor中配置DKIM私鑰,以便我的電子郵件得到簽名嗎?
我使用內置在Meteor.js功能來發送電子郵件報名和密碼重置郵件:與DKIM簽名的電子郵件流星
流星使用MailComposer從NodeMailer發送郵件,這個包似乎是support email signing。我可以在Meteor中配置DKIM私鑰,以便我的電子郵件得到簽名嗎?
Meteor-Mailer支持DKIM簽名開箱即用SES。
var transport = nodemailer.createTransport("SES", {
AWSAccessKeyID: "AWSACCESSKEY",
AWSSecretKey: "AWS/Secret/key"
});
// all messages sent with *transport* are signed with the following options
transport.useDKIM({
domainName: "example.com",
keySelector: "dkimselector",
privateKey: fs.readFileSync("private_key.pem")
});
transport.sendMail(...);
在Signing emails with DKIM in Node.js
原來的答覆請注意,Meteor-Mailer可以有多個STMP提供商和nodemailer還支持DKIM簽名。
這可以用於內置註冊/密碼重置電子郵件功能,即[Accounts.sendEnrollmentEmail(...)](https://docs.meteor.com/api/passwords.html#Accounts-sendEnrollmentEmail )?流星隱藏了一些實現,所以你不要自己調用底層庫的sendMail()函數。 – ajgarn
我會在週末檢查它 –