i refered following tutorial : http://blog.bismallion.com/sending-em...
var content = 'here is binary image data';
// Read file content first
var blob = new Blob([content], { type: "image/jpeg"});
var fileName = 'ZZZ.jpeg'
// Read file name first
formData.append("files[" + fileName + "]", blob);
Here in mail some text description and in attachment theres is images only currepred
Thanks Evgene.
hello,
i used your Appery.io for my new android app
i also used inbuild sendGrid mail api.
all is works fine and i send mail from my app
but i want also attached images to mail, which is stored in DB as binarry formated
so how can i send images through api from database ???