我正在使用Meteor-CollectionFS来上传pdf文件。它使用S3存储它,这一切都在工作。我的问题涉及如何拦截文件并将其转换为base64String,以便我可以使用Mandrill将此pdf的副本通过电子邮件发送给用户,以及将其存储以供将来使用。
以下是我到目前为止的代码:
Template.dropzone.events({
'dropped #dropzone': function(e) {
FS.Utility.eachFile(e, function(file) {
Meteor.call('testEmailUpload', file.toString('base64'));
var newFile = new FS.File(file);
Images.insert(newFile, function (error, fileObj) {
if (error) {
toastr.error("Upload failed... please try again.");
} else {
toastr.success('Upload succeeded!');
}
});
});
}
});
方法调用发送电子邮件。
'testEmailUpload': function (base64String){
Mandrill.messages.send({
message: {
subject: 'Test Email',
from_email: "xxxxxxxx",
from_name: "xxxxxxxx",
to: [{ email: "xxxxxxxx"}],
text: "TestEmail Upload Files",
headers: {"Reply-To": "xxxxxxxx" },
attachments: [{
type: "application/pdf",
name: "TestPDF.pdf",
content: base64String
}]
}
},
function(result) {
}, function(e) {
// Mandrill returns the error as an object with name and message keys
console.log('A mandrill error occurred: ' + e.name + ' - ' + e.message);
// A mandrill error occurred: Unknown_Subaccount - No subaccount exists with the id 'customer-123'
});
}
这适用于上传没有问题。但是我不知道我应该调用什么来获取实际的base64string以传递给该方法。现在发送的电子邮件正在发送,但pdf永远不会正确创建。
非常感谢任何帮助。