Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
flores1976 #1
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
-
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... -
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... -
Hiding Email address
Is there code out there to truly hide email addresses from view source or spiders(crawlers etc). TIA Aaron -
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... -
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... -
rmorgan #2
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
-
flores1976 #3
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
-
eastinq #4
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



Reply With Quote

