Cod*_*hur 2 email-attachments amazon-web-services node.js amazon-ses aws-sdk
我想使用sendRawEmail(Node:aws-sdk)函数发送附件中的PDF文件,我尝试了很多方法,电子邮件发送成功,但是PDF变得简单了。请更正我的代码并帮助解决它。
代码在这里:
try {
data = fs.readFileSync('files/demo-invoice-new.pdf', 'utf8');
console.log(data.toString());
var ses_mail = "From: 'AWS SES Attchament Configuration' <" + SOURCE_EMAIL + ">\n";
ses_mail = ses_mail + "To: " + toEmail + "\n";
ses_mail = ses_mail + "Subject: AWS SES Attachment Example\n";
ses_mail = ses_mail + "MIME-Version: 1.0\n";
ses_mail = ses_mail + "Content-Type: multipart/mixed; boundary=\"NextPart\"\n\n";
ses_mail = ses_mail + "--NextPart\n";
ses_mail = ses_mail + "Content-Type: text/html; charset=us-ascii\n\n";
ses_mail = ses_mail + "This is the body of the email.\n\n";
ses_mail = ses_mail + "--NextPart\n";
ses_mail = ses_mail + "Content-Type: application/octet;\n";
ses_mail = ses_mail + "Content-Disposition: attachment; filename=\"demo-invoice-new.pdf\"\n\n";
ses_mail = ses_mail + data.toString('utf8') + "\n\n";
ses_mail = ses_mail + "--NextPart--";
var params = {
RawMessage: { Data: new Buffer(ses_mail) },
Destinations: [toEmail],
Source: "'AWS SES Attchament Configuration' <" + SOURCE_EMAIL + ">'"
};
console.log(params);
var sendPromise = new AWS.SES(AWS_SES_CONFIG).sendRawEmail(params).promise();
return sendPromise.then(
data => {
console.log(data);
return data;
}).catch(
err => {
console.error(err.message);
throw err;
});
} catch (e) {
console.log('Error:', e.stack);
}
Run Code Online (Sandbox Code Playgroud)
我设法使用nodemailer和SESV2解决了这个问题。我有Base64编码的数据,所以你的脚本可能与我的有点不同,但下面的代码片段应该给你一个想法......这是我的解决方案:
const MailComposer = require("nodemailer/lib/mail-composer");
const AWS = require("aws-sdk");
const generateRawMailData = (message) => {
let mailOptions = {
from: message.fromEmail,
to: message.to,
subject: message.subject,
text: message.bodyTxt,
html: message.bodyHtml,
attachments: message.attachments.map(a => ({ filename: a.name, content: a.data, encoding: 'base64' }))
};
return new MailComposer(mailOptions).compile().build();
};
const exampleSendEmail = async () => {
var message = {
fromEmail: "sender@server.com",
to: "receiver@sender.com",
subject: "Message title",
bodyTxt: "Plaintext version of the message",
bodyHtml: "<p>HTML version of the message</p>",
attachments: [{
name: 'hello.txt',
data: 'aGVsbG8gd29ybGQ='
}]
};
let ses = new AWS.SESV2(),
params = {
Content: { Raw: { Data: await generateRawMailData(message) } },
Destination: {
ToAddresses: message.to,
BccAddresses: message.bcc,
},
FromEmailAddress: message.fromEmail,
ReplyToAddresses: message.replyTo,
};
return ses.sendEmail(params).promise();
}
Run Code Online (Sandbox Code Playgroud)
SES原始消息必须是base64编码的。因此,您需要将文件内容作为缓冲区并将其编码为base64字符串附件。另外,您无需为原始消息数据创建新的缓冲区,因为它已经接受字符串数据类型。
可选:您也可以省略该Destinations参数,因为您已经To在原始消息数据中提供了该字段。(您也可以提供Cc和Bcc字段)
您可以尝试例如:
data = fs.readFileSync("files/demo-invoice-new.pdf");
var ses_mail = "From: 'AWS SES Attchament Configuration' <" + SOURCE_EMAIL + ">\n";
ses_mail += "To: " + toEmail + "\n";
ses_mail += "Subject: AWS SES Attachment Example\n";
ses_mail += "MIME-Version: 1.0\n";
ses_mail += "Content-Type: multipart/mixed; boundary=\"NextPart\"\n\n";
ses_mail += "--NextPart\n";
ses_mail += "Content-Type: text/html\n\n";
ses_mail += "This is the body of the email.\n\n";
ses_mail += "--NextPart\n";
ses_mail += "Content-Type: application/octet-stream; name=\"demo-invoice-new.pdf\"\n";
ses_mail += "Content-Transfer-Encoding: base64\n";
ses_mail += "Content-Disposition: attachment\n\n";
ses_mail += data.toString("base64").replace(/([^\0]{76})/g, "$1\n") + "\n\n";
ses_mail += "--NextPart--";
var params = {
RawMessage: {Data: ses_mail},
Source: "'AWS SES Attchament Configuration' <" + SOURCE_EMAIL + ">'"
};
Run Code Online (Sandbox Code Playgroud)
注:在/([^\0]{76})/正则表达式替换伤了你的排长队,以确保邮件服务器不抱怨的消息线路过长时,有一个编码的附件,这可能会导致一个短暂的反弹。(参见RFC 5321)
| 归档时间: |
|
| 查看次数: |
2642 次 |
| 最近记录: |