I’m using getURL(mailto:) to open up the user’s default mail client and I know how to set the email subject and body, but what I dont’ know how to do is make a link in the body content.
I want the body content to say:
“Click here to see my drawing”
with “Click here” as the link to the drawing.
All I’ve been able to do is set static text in the body content, how do I make a link?
Here’s my code:
send_btn.onRelease = function () {
subject= escape(yourName+" has shared their artwork with you!")
linkText.html=true;
linkText.htmlText="<a href='http://www.newyorklife.com'>Click here</a>";
body = escape(linkText+" to see my drawing");
getURL("<A href="mailto:"+sendThis+"?subject="+subject+"&body="+body">mailto:"+sendThis+"?subject="+subject+"&body="+body);
}
I’ve tried various things with the body variable, but all I get is either plain text, “undefined”, or nothing.
Please tell me how to do this!!! Thanks!:hugegrin: