Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want send email with actionscript 1

Status
Not open for further replies.

t1hodges

MIS
May 8, 2003
54
Im redesigning an html site with flash. As a visitor to the site want to be able to send an email to the website owner. How can I create this, if possible, with flash?
 
Make your action something like:

Code:
//on submit button
on(release){
   subject = "the subject"; // As a string
   body = textBoxInstanceName.text // The instance name of the text box for the input.
   getURL("mailto:me@me.com?subject="+subject+"body="+body);

Better to use server side script though.

Wow JT that almost looked like you knew what you were doing!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top