Find the following code in inc_subscription.asp
if LoopCatID > 0 then
if LoopForumID > 0 then
if LoopTopicID > 0 then
strSubject = strForumTitle & " - Reply to a posting"
strMessage = strMessage & MemberName & " has replied to a topic on " & strForumTitle & " that you requested notification to. "
else
strSubject = strForumTitle & " - New posting"
strMessage = strMessage & MemberName & " has posted to the forum '" & ForumName & "' at " & strForumTitle & " that you requested notification on. "
end if
else
strSubject = strForumTitle & " - New posting"
strMessage = strMessage & MemberName & " has posted to the category '" & CatName & "' at " & StrForumTitle & " that you requested notification on. "
end if
else
strSubject = strForumTitle & " - New posting"
strMessage = strMessage & MemberName & " has posted to the " & strForumTitle & " board that you requested notification on. "
end if
Then add the following where you want the topic id to appear
& LoopTopicID &
Example:
if LoopCatID > 0 then
if LoopForumID > 0 then
if LoopTopicID > 0 then
strSubject = strForumTitle & "[" & LoopTopicID & "] - Reply to a posting"
strMessage = strMessage & MemberName & " has replied to a topic on " & strForumTitle & " that you requested notification to. "
else
strSubject = strForumTitle & "[" & LoopTopicID & "] - New posting"
strMessage = strMessage & MemberName & " has posted to the forum '" & ForumName & "' at " & strForumTitle & " that you requested notification on. "
end if
else
strSubject = strForumTitle & "[" & LoopTopicID & "] - New posting"
strMessage = strMessage & MemberName & " has posted to the category '" & CatName & "' at " & StrForumTitle & " that you requested notification on. "
end if
else
strSubject = strForumTitle & " - New posting"
strMessage = strMessage & MemberName & " has posted to the " & strForumTitle & " board that you requested notification on. "
end if