For a web project, I want to send a picture which I get from a canvas via dataURL via email to upload it direct to tumbler. I can get the dataURL and download the picture with
function download() {
var dt = scope.toDataURL('image/png');
this.href = dt;};
is there a way to send this picture directly via email?