Should I not be able to change some of the register.asp and have that show up in the registrant's email? Here is my code changes (in bold). I edited the asp file in Dreamweaver.
if strEmail = "1" and strRestrictReg = "0" then '## E-mails Message to the Author of this Reply. strRecipientsName = Request.Form("Name") strRecipients = Request.Form("Email") strFrom = strSender strFromName = strForumTitle strsubject = " Main Street Baptist Youth Forum Registration " & strForumTitle strMessage = "Hello " & Request.Form("name") & vbNewline & vbNewline strMessage = strMessage & "You received this message from " & strForumTitle & " because you have registered for a new account which allows you to post new messages and reply to existing ones on the forums at the Main Street Baptist Youth Forum" & strForumURL & vbNewline & vbNewline if strAuthType="db" then
in your first change why have the forum title twice? in the second change, you should use strForumTitle rather than hardcoding the name. you should avoid editing asp files in a GUI program. use an html editor or better yet, notepad to make changes.
But Dreamweaver is an HTML editor. I feel like it is a cache problem as it is sending the original ASP text in the email even though I FTP'd the revised one (with the above changes).
PS...I cleared the IE cache and that did not help. I edited the register.asp in Notepad and that did not help either. What am I missing here; gotta be something simple.