|
Revision 5, 0.7 kB
(checked in by DanWilson, 17 years ago)
|
|
Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)
|
| Rev | Line | |
|---|
| [5] | 1 | <cfsetting enablecfoutputonly=true> |
|---|
| 2 | <!--- |
|---|
| 3 | Name : viewemaillist.cfm |
|---|
| 4 | Author : Raymond Camden |
|---|
| 5 | Created : September 16, 2004 |
|---|
| 6 | Last Updated : September 16, 2004 |
|---|
| 7 | History : |
|---|
| 8 | Purpose : |
|---|
| 9 | ---> |
|---|
| 10 | |
|---|
| 11 | <cfif not isDefined("url.id")> |
|---|
| 12 | <cfabort> |
|---|
| 13 | </cfif> |
|---|
| 14 | |
|---|
| 15 | <cftry> |
|---|
| 16 | <cfset survey = application.survey.getSurvey(url.id)> |
|---|
| 17 | <cfcatch> |
|---|
| 18 | <cfabort> |
|---|
| 19 | </cfcatch> |
|---|
| 20 | </cftry> |
|---|
| 21 | |
|---|
| 22 | <cfset list = application.survey.getEmailList(url.id)> |
|---|
| 23 | |
|---|
| 24 | <cfmodule template="../tags/layout.cfm" templatename="plain" title="Email Restriction List"> |
|---|
| 25 | |
|---|
| 26 | <cfoutput> |
|---|
| 27 | <h2>Email Restriction List for #survey.name#</h2> |
|---|
| 28 | |
|---|
| 29 | <p> |
|---|
| 30 | <cfloop query="list"> |
|---|
| 31 | #emailaddress#<br> |
|---|
| 32 | </cfloop> |
|---|
| 33 | </p> |
|---|
| 34 | </cfoutput> |
|---|
| 35 | |
|---|
| 36 | </cfmodule> |
|---|
| 37 | |
|---|