Nodemailer是一个流行的Node.js模块,用于发送电子邮件。它提供了一个简单而强大的API,可以轻松地发送各种类型的电子邮件,包括纯文本、HTML和带附件的邮件。
在默认情况下,Nodemailer会自动将文本消息转换为HTML格式。如果你想发送纯文本消息而不带换行符,可以通过设置textEncoding
选项为quoted-printable
来实现。这样,Nodemailer会将文本消息编码为Quoted-Printable格式,从而确保消息中的换行符被正确处理。
以下是一个使用Nodemailer发送纯文本消息的示例代码:
const nodemailer = require('nodemailer');
// 创建一个SMTP传输对象
const transporter = nodemailer.createTransport({
host: 'smtp.example.com',
port: 587,
secure: false,
auth: {
user: 'your-email@example.com',
pass: 'your-password'
}
});
// 配置邮件选项
const mailOptions = {
from: 'sender@example.com',
to: 'recipient@example.com',
subject: 'Hello',
text: 'This is a plain text message without line breaks',
textEncoding: 'quoted-printable'
};
// 发送邮件
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
console.log('Error:', error);
} else {
console.log('Message sent:', info.messageId);
}
});
在上面的示例中,我们创建了一个SMTP传输对象,并配置了SMTP服务器的相关信息。然后,我们设置了邮件选项,包括发件人、收件人、主题和纯文本消息内容。最后,我们使用transporter.sendMail()
方法发送邮件。
对于Nodemailer的更多详细信息和用法,请参考腾讯云的相关产品文档:Nodemailer - 腾讯云
领取专属 10元无门槛券
手把手带您无忧上云