Question
Insert newline into mailto?
Hi all:
I using AS3 to create a mailto: link from within an swf.
I have this code working:
mailto_mc.addEventListener(MouseEvent.CLICK, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
navigateToURL(new URLRequest("mailto:some_email@yahoo.com?subject=Check out this new video!&body=Some body text"));
}
Anyone know of a way to insert newlines into the message and have them passed correctly to the email client?
Thanks.
I using AS3 to create a mailto: link from within an swf.
I have this code working:
mailto_mc.addEventListener(MouseEvent.CLICK, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
navigateToURL(new URLRequest("mailto:some_email@yahoo.com?subject=Check out this new video!&body=Some body text"));
}
Anyone know of a way to insert newlines into the message and have them passed correctly to the email client?
Thanks.