A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: E-mail "Subject" issue

  1. #1
    Senior Member Sir Yendor's Avatar
    Join Date
    Sep 2001
    Location
    Over here
    Posts
    1,140
    I have a button with this code:

    on (release) {
    getURL("mailto:myname@mysite.com");
    }

    that when clicked when open a preaddressed e-mail to the target address.

    Is there a way to modify the code so that it will fill in the "subject" or "re" field?

    Thanks

  2. #2
    ActionScript.org
    Join Date
    Aug 2000
    Posts
    1,030
    Code:
    on (release) { 
    getURL("mailto:you@yoursite.com?subject=test&body=blah blah&cc=me@server.com); 
    }
    Also see my sendmail contact form tutorial ( http://www.actionscripts.org/tutoria...il/index.shtml ) which allows you to send mail using the server and not rely on the local user's client.

  3. #3
    Senior Member
    Join Date
    Oct 2000
    Location
    Nashville, Tennessee, USA
    Posts
    134

    Red face

    and in fact, i just uploaded one here last night that does a contact form in MX (a couple of new wrinkles over Flash 5) along with a PERL script for the server.... probably won't be up for a day or two, but if interested you may wish to check back... it will be under "Interactivity"

  4. #4
    Senior Member Sir Yendor's Avatar
    Join Date
    Sep 2001
    Location
    Over here
    Posts
    1,140
    Cool, thanks to both of you. I'll try it out later this evening.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center