Multiple email address for an Option Value

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Multiple email address for an Option Value

    :confused;

    I am trying to figure out if I can send a request form to multiple email
    addresses based on the selected option value. Currently, I am sending the
    request form to one person per option value, but what I would like to do is
    send the request form to 3 people based on an option value. I don't know if it
    is possible to do with an option value. Any help is greatly appreciated.


    flores1976 Guest

  2. Similar Questions and Discussions

    1. How to set email address for cron?
      Cron is generating some messages on my Ubuntu system. However, the messages are always mailed to root@domain. I have set domain in my postfix...
    2. email address??
      I have the following code for email <strong><font color="#000000"><a href="mailto:mail@leaktechinc.com"></a></font></strong> How do add...
    3. Hiding Email address
      Is there code out there to truly hide email addresses from view source or spiders(crawlers etc). TIA Aaron
    4. email - reply address
      After configuring internet access and email accounts using pop3 connector, everything worked fine except for the reply address on the emails. My...
    5. Getting email address.
      When my Users enter their information into my trouble call database, is there a way to get their email address automatically rather than them...
  3. #2

    Default Re: Multiple email address for an Option Value

    Without seeing exactly what you are after, my first thoughts would be to to just add the names into the cfmail tag and/or use a cfif statement to determenine who receives the email.
    rmorgan Guest

  4. #3

    Default Re: Multiple email address for an Option Value

    right now I have a simple radio option selection, which will send a request
    form to one person based on the requestor's building selection, here is the
    code:



    <input type="radio" name="Building" value="test1@ups.com" align="left">
    Mahwah<br>
    <input type="radio" name="Building" value="test2@ups.com"
    align="left">
    Ramsey<br>
    <input type="radio" name="Building" value="test3@ups.com"
    align="left">
    Morristown<br>
    <input type="radio" name="Building" value="test4@ups.com"
    align="left">
    Paramus</font></b></td>
    <input type="hidden" name="Building_Required"
    Value="Building is Required!">

    flores1976 Guest

  5. #4

    Default Re: Multiple email address for an Option Value

    Just change the input type from radio to checkbox. Then for each one they select you'll get a comma delimited list of email addresses in FORM.Building.


    eastinq 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