我正在通过后缀邮件服务器发送电子邮件。 该代码位于 node.js 上,使用 sendmail :
const sendmail = require('sendmail')({
logger: {
debug: console.log,
info: console.info,
warn: console.warn,
error: console.error
},
silent: true,
smtpPort: 25, // Default: 25
dkim: {
privateKey: fs.readFileSync('mail_key.txt', 'utf8'),
keySelector: 'mail'
},
smtpHost: 'mail.mydomain.com' // Default: -1 - extra smtp host after resolveMX
})
const text = 'some text .... ';
var mes=sendmail({
from: ' "some sender" <info@mydomain.com',
to: data.Email,
subject: 'Your Account Data',
html:text,
}, function(err, reply) {
console.log(err && err.stack);
console.dir(reply);
});
消息已成功发送。但仍然是加密的。 我想知道如何发送要加密的电子邮件。 顺便说一句,我的连接之前已使用TLS加密。我想加密邮件内容。
答案 0 :(得分:0)
您可以使用bcrypt包来加密您的字符串值,这是使用它的方法:
let text2 = 'some....';
bcrypt.hash(text2, 10, (err, hash) => {
if(err) throw err;
text = hash;
console.log('happy hashing',text);
});