Question
attachment with mailto in Animate CC
I have been trying to add a visable image like a jpg or or other image with AS3 to an email. I am nearly done with an iOS Air SDK application but can't sove this. When the user submits a mailto, the address, cc, and body fill in with text from a form, this was easy. However getting an email to populate the body with an image has been impossible. I am desparate, please submit any help!
var OneEmailone:String ="";
var vetEmail:String ="";
var subEmail:String ="";
var bodEmail:String ="";
/*
var custName:String ="";
var vetName:String ="";
var flowName:String ="";*/
submitProt1.addEventListener(MouseEvent.CLICK,fEmailClickone);
function fEmailClickone(event:MouseEvent):void
{
OneEmailone = customer_email.text;
vetEmail = rep_email.text;
subEmail = "PCV2d Results";
bodEmail = vet_email.te;
navigateToURL(new URLRequest("mailto:"+OneEmailone+"?cc=" +vetEmail+"&subject="+subEmail+"&body="+bodEmail ), "_blank");
}
