Flash MX e-mail window

Status
Not open for further replies.

confusedideal

Baseband Member
Messages
34
Okay, so here's my code now...


btn_submit.onRelease = function () {
getURL("mailto:thelonewolf67@yahoo.com?subject=Feedback" + "&body=" + "Name: " + first + " " + last + "%0d%0a" + "Company: " + company + "%0d%0a" + "Address: " + addr1 + "%0d%0a" + addr2 +
"%0d%0a" + city + ", " + state + " " + zip + "%0d%0a" + "E-mail: " + email + "%0d%0a" + "Phone: " + phone1 + "-" + phone2 + "-" + phone3 + "%0d%0a" + "Comments:" + "%0d%0a" + comment + "%0d%0a" + info + "%0d%0a" + contact);
};

I've got the formatting issue covered. Can anyone at all explain how to NOT bring up an e-mail window?
 
Status
Not open for further replies.
Back
Top Bottom