<% '################################################################################# '## Snitz Forums 2000 v3.4.07 '################################################################################# '## Copyright (C) 2000-09 Michael Anderson, Pierre Gorissen, '## Huw Reddick and Richard Kinser '## '## This program is free software; you can redistribute it and/or '## modify it under the terms of the GNU General Public License '## as published by the Free Software Foundation; either version 2 '## of the License, or (at your option) any later version. '## '## All copyright notices regarding Snitz Forums 2000 '## must remain intact in the scripts and in the outputted HTML '## The "powered by" text/logo with a link back to '## http://forum.snitz.com in the footer of the pages MUST '## remain visible when the pages are viewed on the internet or intranet. '## '## This program is distributed in the hope that it will be useful, '## but WITHOUT ANY WARRANTY; without even the implied warranty of '## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the '## GNU General Public License for more details. '## '## You should have received a copy of the GNU General Public License '## along with this program; if not, write to the Free Software '## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. '## '## Support can be obtained from our support forums at: '## http://forum.snitz.com '## '## Correspondence and Marketing Questions can be sent to: '## manderson@snitz.com '## '################################################################################# %> <% if Request.QueryString("mode") = "DoIt" then Err_Msg = "" if strLogonForMail <> "0" and (MemberID < 1 or isNull(MemberID)) then Err_Msg = Err_Msg & "
  • You Must be logged on to send a message
  • " end if if (Request.Form("YName") = "") then Err_Msg = Err_Msg & "
  • You must enter your name!
  • " end if if (Request.Form("YEmail") = "") then Err_Msg = Err_Msg & "
  • You Must give your e-mail address
  • " else if (EmailField(Request.Form("YEmail")) = 0) then Err_Msg = Err_Msg & "
  • You Must enter a valid e-mail address
  • " end if end if if (Request.Form("Name") = "") then Err_Msg = Err_Msg & "
  • You must enter the recipients name
  • " end if if (Request.Form("Email") = "") then Err_Msg = Err_Msg & "
  • You Must enter the recipients e-mail address
  • " else if (EmailField(Request.Form("Email")) = 0) then Err_Msg = Err_Msg & "
  • You Must enter a valid e-mail address for the recipient
  • " end if end if if (Request.Form("Msg") = "") then Err_Msg = Err_Msg & "
  • You Must enter a message
  • " end if if lcase(strEmail) = "1" then if (Err_Msg = "") then strRecipientsName = Request.Form("Name") strRecipients = Request.Form("Email") strSubject = "From: " & Request.Form("YName") & " Interesting Page" strMessage = "Hello " & Request.Form("Name") & vbNewline & vbNewline strMessage = strMessage & Request.Form("Msg") & vbNewline & vbNewline strMessage = strMessage & "You received this from : " & Request.Form("YName") & " (" & Request.Form("YEmail") & ") " if Request.Form("YEmail") <> "" then strSender = Request.Form("YEmail") end if %> <% Response.Write("

    E-mail has been sent

    " & vbNewLine) else Response.Write("

    There Was A Problem With Your E-mail

    " & vbNewLine) Response.Write " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ "
      " & Err_Msg & "
    " & vbNewLine Response.Write("

    Go Back To Enter Data

    " & vbNewLine) end if end if else '## Forum_SQL strSql = "SELECT M_NAME, M_USERNAME, M_EMAIL " strSql = strSql & " FROM " & strMemberTablePrefix & "MEMBERS" strSql = strSql & " WHERE " & strDBNTSQLName & " = '" & chkString(strDBNTUserName,"SQLString") & "'" set rs = my_conn.Execute (strSql) YName = "" YEmail = "" if (rs.EOF or rs.BOF) then if strLogonForMail <> "0" then Err_Msg = Err_Msg & "
  • You Must be logged on to send a message
  • " Response.Write("

    There Was A Problem With Your E-mail

    " & vbNewLine) Response.Write " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ "
      " & Err_Msg & "
    " & vbNewLine set rs = nothing Response.Write("

    Close Window

    " & vbNewLine) Response.End end if else YName = Trim("" & rs("M_NAME")) YEmail = Trim("" & rs("M_EMAIL")) end if rs.close set rs = nothing Response.Write("

    Send Topic to a Friend

    " & vbNewLine) Response.Write "
    " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ "
    " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ " " & vbNewLine & _ "
    Send To Name:
    Send To E-mail:
    Your Name: "" then Response.Write("hidden") else Response.Write("text") end if Response.Write """ value=""" & YName & """ size=""25"">" if YName <> "" then Response.Write(YName) end if Response.Write "
    Your E-mail: "" then Response.Write("hidden") else Response.Write("text") end if Response.Write """ value=""" & YEmail & """ size=""25"">" if YEmail <> "" then Response.Write(YEmail) end if Response.Write "
    Message:
    " & vbNewLine & _ "
    " & vbNewLine & _ "
    " & vbNewLine end if WriteFooterShort Response.End %>