gpt4 book ai didi

node.js - 如何使用 Sendgrid 和 Multer 将文件附加到电子邮件

转载 作者:太空宇宙 更新时间:2023-11-03 23:04:44 24 4
gpt4 key购买 nike

我正在尝试将文件附加到 sendgrid,而不将它们存储到磁盘。我想使用流来处理这个问题。

    var multer  = require('multer');
var upload = multer({ storage: multer.memoryStorage({})});
mail = new helper.Mail(from_email, subject, to_email, content);
console.log(req.body.File);
attachment = new helper.Attachment(req.body.File);
mail.addAttachment(attachment)

最佳答案

我认为使用流是不可能的,因为:

但是您可以使用返回的 buffer 来实现它作为附件,例如:

var multer  = require('multer')
, upload = multer({ storage: multer.memoryStorage({})})
, helper = require('sendgrid').mail;

app.post('/send', upload.single('attachment'), function (req, res, next) {
// req.file is the `attachment` file
// req.body will hold the text fields, if there were any

var mail = new helper.Mail(from_email, subject, to_email, content)
, attachment = new helper.Attachment()
, fileInfo = req.file;

attachment.setFilename(fileInfo.originalname);
attachment.setType(fileInfo.mimetype);
attachment.setContent(fileInfo.buffer.toString('base64'));
attachment.setDisposition('attachment');

mail.addAttachment(attachment);
/* ... */
});

如果与大附件或高并发一起使用,可能会影响内存使用(内存不足错误)。

关于node.js - 如何使用 Sendgrid 和 Multer 将文件附加到电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38065118/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com