Works with any backend npm install Zero dependencies

Email Attachments

Email compose interface with file attachments using attachmentMode for a compact attachment bar.

Compose your email here...
var uploader = new MultipleUpload(el, {
 uploadUrl: '/api/upload',
 attachmentMode: true,
 autoUpload: true,
 onQueueAdd: function(task) {
 addAttachmentChip(task);
 }
});

attachBtn.addEventListener('click', function() {
 uploader.openFileDialog();
});