I do not know cold fusion at all. And I have
struggled and have come up with nothing. All
I needed to do was edit the form on the page
and of course the mail script.
I saved it and uploaded. When I click on the
link to go to the email page. My browser wants
to download the file!(Unless I completely remove
the mail script at the top, which defeats the purpose).
You can see what I mean by going to
http://www.minid.com/cfopreview/default.cfm
Click on "sign up for newsletter".
I tried opening it in a blank window and quickly
stopping the page load. When I hard refresh..I get
the page's script..inlcuding the Cold Fusion script
not just the HTML ??!!!
Below is what was originally provided to me.
I did move the include file "header.cfm" into the
<body> because it is a image banner and put the
style.cfm ( a css style) include to the <head> tag.
Can somebody tell me what I might be doing wrong??
I hope I provided enough info, let me know if not.
Thanks so much in advance.
Code:
<cfif ParameterExists(dosignup)>
<cfif #rdoSubscribe# is "subscribe">
<cfmail to="eanicklaus@website.com" from="#emailaddress#" subject="subscribe newsletter
#emailaddress#">
subscribe newsletter #emailaddress#
</cfmail>
<cfset tMSG = "#emailaddress# has been added to the Newsletter Mailing List">
<cfelse>
<cfmail to="eanicklaus@website.com" from="#emailaddress#" subject="unsubscribe newsletter #emailaddress#">
unsubscribe newsletter #emailaddress#
</cfmail>
<cfset tMSG = "#emailaddress# has been removed from the Newsletter Mailing List">
</cfif>
</cfif>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<cfinclude template="style.cfm">
<cfinclude template="header.cfm">
<head>
<title>Input your Email for timely updates of Networking Events</title>
</head>
<body>
and so on and so forth.....