Receive E-mail Form

Hello this is my first time posting here so bare with me lol. im trying to make a simple email form that when users fill it out it sends the information to my email. this is the actionscript im using

on (click) {
trace(this._parent.username.text);
trace(this._parent.email.text);
trace(this._parent.days.selectedItem.label);
trace(this._parent.gondola.selected);
trace(this._parent.art.selected);
trace(this._parent.museum.selected);
trace(this._parent.murano.selected);
trace(this._parent.travel.selectedData);
trace(this._parent.comments.text);
returnEmail = this._parent.email.text;
urlData = “”;
urlData += "Name: “+this._parent.username.text+newline+” ";
urlData += "Email: “+this._parent.email.text+newline+” ";
urlData += "Staying: “+this._parent.days.selectedItem.label+newline+” ";
urlData += "Gondola Tour: “+this._parent.gondola.selected+newline+” ";
urlData += "Art Gallery pass: “+this._parent.art.selected+newline+” ";
urlData += "Museum Pass: “+this._parent.museum.selected+newline+” ";
urlData += "Murano Tour: “+this._parent.murano.selected+newline+” ";
urlData += “Mode of Travel: “+this._parent.travel.selectedData+newline+” “;
urlData += “Comments: “+this._parent.comments.text+newline+” “;
getURL(”<A href="mailto:[email protected]?subject=VeniceInfo&body=”+urlData”>mailto:[email protected]?subject=VeniceInfo&body=”+urlData);
}
:h:
as u see im using alittle bit of everything , checkboxes , RadioButtons, text ,etc. and im putting all this action on the send button it does not gives me any errors when i test it but it does not send me any email ,also when i test it’s html and press the send button it opens up my Outlook Express. Please help me. If you know other way of obtaining this i would also be happy to learn it.:kommie: