如何在nodejs中使用附件发送电子邮件?

how to send email using attachments in nodejs?

此程序运行良好,但未发送附件文件。谁能给我正确的解决方案?提前致谢。

var nodemailer = require('nodemailer');
var fs=require("fs");
var smtpTransport = require('nodemailer-smtp-transport');
var transporter = nodemailer.createTransport(smtpTransport({
    service: 'Gmail',
    host: 'smtp.gmail.com',
    port: 465,
    auth: {
        user: 'sampleprogrammers@gmail.com',
        pass: 'xvbthhegebeb.'
    }
}));

    transporter.sendMail({
        from: "sampleprogrammers@gmail.com",
        subject:" hello ji " ,
        text: "I would like to write dialogue",
        Attachments:[
            {
                'filename':'link.txt',
                'path': 'E:/STUDIES/CORE SUBJECTS/link.txt'
            }
        ],
        to: "vikirockz456@gmail.com"
    }, function(error, info) {
        if (error) {
            return console.log(error);
        }
        console.log('Message %s sent: %s', info.messageId, info.response);
        console.log("Mail sent successfully");
    });

attachments 应该小写。您正在使用 Attachments.

参考:https://nodemailer.com/message/attachments/