Email Attachments
Email compose interface with file attachments using attachmentMode for a compact attachment bar.
var uploader = new MultipleUpload(el, {
uploadUrl: '/api/upload',
attachmentMode: true,
autoUpload: true,
onQueueAdd: function(task) {
addAttachmentChip(task);
}
});
attachBtn.addEventListener('click', function() {
uploader.openFileDialog();
});