sending form results to a 2nd recipient

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default sending form results to a 2nd recipient

    I'm trying to modify the javascript line in my "contact" form to send the
    information (POST method) to a second email
    recipient. Here is the single-recipient code:

    <input name="Submit" type="submit"
    onClick="MM_validateForm('1','','RisEmail','textar ea','','R');MM_callJS('mailto:
    [email]recipient1@yahoo.com[/email]');return document.MM_returnValue" value="Submit">

    I've tried commas, semicolons, plus signs, repeat of the MM_callJS statement
    all to no avail (only the first one is sent).

    I also looked into hosted forms, ended up sending an email to support which
    hasn't been answered 4 days later.
    Got me to thinking, maybe I could do it by modifying the above script?
    Instead of futzing with hosted forms.

    My host is Yahoo!, they pointed me to the script above - guess that's the one
    that plays with their form-handling script on the server.

    Thanks in advance for any help....

    -steve

    sbell2200 Guest

  2. Similar Questions and Discussions

    1. Setting up a form for an emal recipient.
      Hello, Thank you for this fourm, Macromedia. I need help on a project I am working on. I am deleloping a web site that has a page where a form...
    2. Setting up a form for an email recipient.
      Hello, Thank you for this fourm, Macromedia. I need help on a project I am working on. I am deleloping a web site that has a page where a form...
    3. Sending search results to a results page..with asp
      Please help.. very :confused; Ive setup 4 dynamic drop down boxes which populate themselves from my database, this all works fine..The last box...
    4. How to send results to more than one recipient
      "James Edward Gray II" <james@grayproductions.net> wrote in message news:4F13E5E4-4ACF-11D8-9A03-000A95BA45F8@grayproductions.net... James, ...
    5. Adding a second email address to form recipient
      I have a simple form that I have been using for a while that I now need to add a second recipient to. My current code is a follows: ...
  3. #2

    Default Re: sending form results to a 2nd recipient

    I use Jmail and in order to add a second recipient I repeat the first line with
    the second recipients address like so:

    msg.AddRecipient "recipient1@xxx.org.uk", "XXX Information"
    msg.AddRecipient "office@xxx.org.uk", "XXX Office"

    I wonder if you should try something along the same lines.
    I'm not familiar with what you are using but maybe it should read something
    like:

    <input name="Submit" type="submit"
    onClick="MM_validateForm('1','','RisEmail','textar ea','','R');MM_callJS('mailto:
    [email]recipient1@yahoo.com')('mailto:recipient2@yahoo.co m[/email]');return
    document.MM_returnValue" value="Submit">

    AlanShaw Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139