<% @ Language=VBScript %> <% Option Explicit %> <% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Guide - Web Wiz Forums '** '** Copyright 2001-2004 Bruce Corkhill All Rights Reserved. '** '** This program is free software; you can modify (at your own risk) any part of it '** under the terms of the License that accompanies this software and use it both '** privately and commercially. '** '** All copyright notices must remain in tacked in the scripts and the '** outputted HTML. '** '** You may use parts of this program in your own private work, but you may NOT '** redistribute, repackage, or sell the whole or any part of this program even '** if it is modified or reverse engineered in whole or in part without express '** permission from the author. '** '** You may not pass the whole or any part of this application off as your own work. '** '** All links to Web Wiz Guide and powered by logo's must remain unchanged and in place '** and must remain visible when the pages are viewed unless permission is first granted '** by the copyright holder. '** '** This program is distributed in the hope that it will be useful, '** but WITHOUT ANY WARRANTY; without even the implied warranty of '** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR ANY OTHER '** WARRANTIES WHETHER EXPRESSED OR IMPLIED. '** '** You should have received a copy of the License along with this program; '** if not, write to:- Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom. '** '** '** No official support is available for this program but you may post support questions at: - '** http://www.webwizguide.info/forum '** '** Support questions are NOT answered by e-mail ever! '** '** For correspondence or non support questions contact: - '** info@webwizguide.info '** '** or at: - '** '** Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom '** '**************************************************************************************** 'Set the response buffer to true as we maybe redirecting Response.Buffer = True 'Dimension variables Dim lngPostID 'Holds the post ID number Dim lngTopicID 'Holds the topic ID number Dim intTopicPageNum 'Holds the topic page number Dim intForumID 'Holds the forum ID Dim strPostedMessage 'Holds the posted message Dim lngToUserID 'Holds the user ID of who the email is to Dim strToUser 'Holds the user name of the person the email is to Dim blnShowEmail 'set to true if the user allws emailing to them Dim strToEmail 'Holds the email address of who the email is to Dim strFromEmail 'Holds the email address of who the email is from Dim blnEmailSent 'Set to true if the email has been sent Dim strEmailBody Dim strSubject Dim strMessagePoster 'Read in the details lngPostID = CLng(Request("PID")) lngTopicID = CLng(Request("TID")) intTopicPageNum = CInt(Request("TPN")) intForumID = CInt(Request("FID")) 'If there is no recopinet for the email then send em to homepage If lngPostID = 0 OR lngTopicID = 0 OR blnEmail = False Then Set rsCommon = Nothing adoCon.Close Set adoCon = Nothing Response.Redirect("default.asp") End If 'If the user is user is using a banned IP redirect to an error page If bannedIP() Then 'Clean up Set rsCommon = Nothing adoCon.Close Set adoCon = Nothing 'Redirect Response.Redirect("insufficient_permission.asp?M=IP") End If 'Initlise variables blnEmailSent = False 'If this is a post back send the mail If Request.Form("postBack") Then 'Check the session ID to stop spammers using the email form Call checkSessionID(Request.Form("sessionID")) 'Get the post to send with the email 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT " & strDbTable & "Author.Username, " & strDbTable & "Thread.Message " strSQL = strSQL & "FROM " & strDbTable & "Author, " & strDbTable & "Thread " strSQL = strSQL & "WHERE " & strDbTable & "Author.Author_ID = " & strDbTable & "Thread.Author_ID AND " & strDbTable & "Thread.Thread_ID=" & lngPostID & ";" 'Query the database rsCommon.Open strSQL, adoCon 'Read in the message to be sent with the report If NOT rsCommon.EOF Then strPostedMessage = rsCommon("Message") strMessagePoster = rsCommon("Username") 'Change the path to the emotion symbols to include the path to the images strPostedMessage = Replace(strPostedMessage, "src=""smileys/smiley", "src=""" & strForumPath & "/smileys/smiley", 1, -1, 1) End If 'Clean up rsCommon.Close 'Inititlaise the subject of the e-mail strSubject = strTxtIssueWithPostOn & " " & strMainForumName 'Initilalse the body of the email message strEmailBody = strTxtHi & "," strEmailBody = strEmailBody & "

" & strTxtTheFollowingReportSubmittedBy & " " & decodeString(strLoggedInUsername) & ", " & strTxtOn & " " & strMainForumName & " " & strTxtWhoHasTheFollowingIssue & " : -" strEmailBody = strEmailBody & "


" strEmailBody = strEmailBody & "
" & Replace(Request.Form("report"), vbCrLf, "
", 1, -1, 1) & "

" strEmailBody = strEmailBody & "
" strEmailBody = strEmailBody & "
" & strTxtToViewThePostClickTheLink & " : -" strEmailBody = strEmailBody & "
" & strForumPath & "/forum_posts.asp?TID=" & lngTopicID & "&TPN=" & intTopicPageNum & "" strEmailBody = strEmailBody & "



" & strTxtPostedBy & ": " & strMessagePoster & "

" strEmailBody = strEmailBody & strPostedMessage 'Get the email address of the boards admins to send the email to 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT " & strDbTable & "Author.Username, " & strDbTable & "Author.Author_email " strSQL = strSQL & "FROM " & strDbTable & "Author " strSQL = strSQL & "WHERE " & strDbTable & "Author.Group_ID=1 AND " & strDbTable & "Author.Author_email <> '';" 'Query the database rsCommon.Open strSQL, adoCon 'Send an email to the forum email address if there are no email addresses of admins in the database If rsCommon.EOF Then blnEmailSent = SendMail(strEmailBody, strTxtForumAdministrator, strForumEmailAddress, strLoggedInUsername, strForumEmailAddress, strSubject, strMailComponent, true) 'If there are email addresses returned send email to the forum admins Do while not rsCommon.EOF 'Send the e-mail using the Send Mail function created on the send_mail_function.inc file blnEmailSent = SendMail(strEmailBody, rsCommon("Username"), rsCommon("Author_email"), strLoggedInUsername, strForumEmailAddress, strSubject, strMailComponent, true) 'Move to next record rsCommon.MoveNext Loop 'Clean up rsCommon.Close 'Get the email address of the moderators to send the email to 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT " & strDbTable & "Author.Username, " & strDbTable & "Author.Author_email " strSQL = strSQL & "FROM " & strDbTable & "Permissions, " & strDbTable & "Author " If strDatabaseType = "SQLServer" Then strSQL = strSQL & "WHERE " & strDbTable & "Permissions.Group_ID = " & strDbTable & "Author.Group_ID AND (" & strDbTable & "Permissions.Forum_ID=" & intForumID & " AND " & strDbTable & "Permissions.Moderate=1) AND " & strDbTable & "Author.Author_email <> '';" Else strSQL = strSQL & "WHERE " & strDbTable & "Permissions.Group_ID = " & strDbTable & "Author.Group_ID AND (" & strDbTable & "Permissions.Forum_ID=" & intForumID & " AND " & strDbTable & "Permissions.Moderate=True) AND " & strDbTable & "Author.Author_email <> '';" End If 'Query the database rsCommon.Open strSQL, adoCon 'Send an email to the moderators Do while not rsCommon.EOF 'Send the e-mail using the Send Mail function created on the send_mail_function.inc file blnEmailSent = SendMail(strEmailBody, rsCommon("Username"), rsCommon("Author_email"), strLoggedInUsername, strForumEmailAddress, strSubject, strMailComponent, true) 'Move to next record rsCommon.MoveNext Loop 'Clean up rsCommon.Close End If %> Report Post
<% = strTxtReportPost %>
 <% = strMainForumName %><% = strNavSpacer %><% = strTxtReportPost %>
<% 'Clean up Set rsCommon = Nothing adoCon.Close Set adoCon = Nothing 'If the users account is suspended then let them know If blnActiveMember = False Then Response.Write vbCrLf & "


" & strTxtForumMemberSuspended & "




" 'Else if the user is not logged in so let them know to login ElseIf intGroupID = 2 Then Response.Write vbCrLf & "


" & strTxtMustBeRegistered & "

" Response.Write vbCrLf & "  



" 'If the email has been sent display the appropriate message ElseIf blnEmailSent Then Response.Write vbCrLf & "


" & strTxtYourReportEmailHasBeenSent & "

" & strTxtReturnToDiscussionForum & "




" 'Else show the form so the person can be emailed Else %>
<% = strTxtPleaseStateProblemWithPost %>

<% = strTxtProblemWithPost %>*:
 
<% End If %>
<% '***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** If blnLCode = True Then If blnTextLinks = True Then Response.Write("Powered by Web Wiz Forums version " & strVersion & "") Else Response.Write("") End If Response.Write("
Copyright ©2001-2004 Web Wiz Guide") End If '***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** 'Display the process time If blnShowProcessTime Then Response.Write "

" & strTxtThisPageWasGeneratedIn & " " & FormatNumber(Timer() - dblStartTime, 4) & " " & strTxtSeconds & "
" %>