複数の.pdf添付ファイルがあり、以下に示すように、添付ファイルをオブジェクトの配列としてSendEmail関数に渡したいと思います。 AWSのドキュメントを読みましたが、添付ファイルに関する情報はありませんでした。
let attachment_data = [];
attachment_data.Push({
filename: 'ticket.pdf',
path:'/sample/tickets/ticket.pdf',
content: new Buffer(fs.readFileSync('/sample/tickets/ticket.pdf')).toString('base64'),
contentType: 'application/pdf',
});
-----------------------------------------------------------------------
function SendMail(options, template, cb) {
for (var key in options) {
template = template.replace('{{%' + key + '%}}', options[key]);
}
client.sendEmail({
from: constants.EMAIL_FROM,
to: options.email,
subject: options.subject,
message: template, //html content
attachments: (options.attachment)?options.attachment:null //array of objects
}, function(err, data, res) {
if(err) cb(err, null);
else cb(null,res)
});
}
------------------------------------------------------------------------
am receiving email but without attachment and I looked all over the documentation and all but all I could find is this statement below which is relevant.
- **The total size of the message, including attachments, must be smaller
than 10 MB.**
am using the below package [node-ses][1]
var ses = require('node-ses'),
client = ses.createClient({
key: process.env.AWS_ACCESSKEY_ID,
secret: process.env.AWS_SECRET_ACCESSKEY,
Amazon: process.env.SES_REGION
});
メールcomposerを使用して解決策を見つけましたが、問題なく動作しました。
これは使いやすい https://nodemailer.com/transports
そのURLを見た後、SESは私に3時間かかります
AWS SESは、Eメールを設定および送信する効率的な方法を提供します。次の投稿を参照してください。それは私のために働いた。 PDF `Node aws-sdk` sendRawEmail関数の添付ファイルを送信するにはどうすればよいですか?