Re: email receiving

Im trying to obtain a simple email form receiver , Ive been trying to make it with actionscript only and this is what i got so far.

on (click) {
// these statements read the data from the input fields
// and print them to the output window for debugging
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);
// save the return email address
returnEmail = this._parent.email.text;
// create an empty string variable to store the data
urlData = “”;
// assemble the data from the fields into the new variable
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+” “;
// print url data to output window for debugging
trace(urlData);
// send email using user input data
getURL(”<A href="mailto:[email protected]?subject= VeniceInfo&body=”+urlData”>mailto:little_master_73 @hotmail.com?subject=VeniceInfo&body=”+urlData);
}
I have tryied other emails liike a @yahoo.com but it does not work and when i test it’s html it opens op my Outlook exPress.Please help me and if you have another way of obtaining this simple email receive form ill be happy to try it.