Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Reply message in notification email
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

tec
Starting Member

10 Posts

Posted - 03 May 2002 :  04:33:26  Show Profile
I was wondering if there is a modified code for viewing the Reply message in the subscription notification e-mail so that one doesn't actually have to log on to the site to view the reply?

This was actually the case in a mod to a previous version of Snitz before subscription was included as default.

Hoping for help...

Tinna



Edited by - tec on 13 May 2002 04:21:26

Edited by - Nathan on 15 May 2002 01:19:59

tec
Starting Member

10 Posts

Posted - 13 May 2002 :  04:22:55  Show Profile
bump

Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 13 May 2002 :  22:58:01  Show Profile  Visit Nathan's Homepage
There has been much talk of making one, but I have never seen a product.

Look around, you will find many threads on the subject.

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page

Snowblind
Starting Member

USA
2 Posts

Posted - 15 May 2002 :  01:09:50  Show Profile  Visit Snowblind's Homepage
OK.. I'm a newbie to the SNITZ forum, but I took a little time to figure out how to add the posting body, to the subscription e-mail notice. Here is the mod as I made them:

## To add the posting body to the subscription list, make the following edits.
In the file: post_info.asp
Locate the calls to the function: ProcessSubscriptions There are two of them. They should look like:

ProcessSubscriptions rs("Member_ID"), Cat_ID, Forum_ID, Topic_ID

Change both of them to be:

ProcessSubscriptions rs("Member_ID"), Cat_ID, Forum_ID, Topic_ID, CleanCode(txtMessage)

In the file: inc_subscription.asp
Locate the line that looks like: This is around line 166

sub ProcessSubscriptions (MemberId, CatID, ForumId, TopicId)

Change it to:

sub ProcessSubscriptions (MemberId, CatID, ForumId, TopicId, txtMessage)

In the same file, a little further below, we need to add the text to the body of the e-mail. The original lines are:
strMessage = strMessage & "Regarding the subject - " & TopicName & "." & vbNewline & vbNewline
strMessage = strMessage & "You can view the posting at " & strForumURL & "link.asp?TOPIC_ID=" & TopicId & vbNewline
The updated lines of code are:
strMessage = strMessage & vbNewLine & vbNewLine & "Subject: " & TopicName & vbNewline & vbNewline & txtMessage & vbNewLine & vbNewLine
strMessage = strMessage & "You can view the full posting at " & strForumURL & "link.asp?TOPIC_ID=" & TopicId & vbNewline

## End of Mods

Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 15 May 2002 :  01:21:21  Show Profile  Visit Nathan's Homepage
Moved this here, may help quite a few people.

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page

tec
Starting Member

10 Posts

Posted - 15 May 2002 :  03:02:35  Show Profile
Before I read your post Snowblind, I did find a modification in the archived posts which works fine and only adds two extra lines in inc_subsciption.asp.

See topic here: http://forum.snitz.com/forum/topic.asp?ARCHIVE=true&TOPIC_ID=16549

You may have to add one or two extra line breaks (& vbNewline) in order for it to look good in the e-mail but it works fine.

But thanks anyway - sorry I was late getting back on that.

tec


Go to Top of Page

Snowblind
Starting Member

USA
2 Posts

Posted - 15 May 2002 :  10:09:13  Show Profile  Visit Snowblind's Homepage
Tec,

That's what I love about these forums. There is always a better way. Thanks for pointing it out. I'm all for minimizing the amount of work in a mod.

Kevin

Go to Top of Page

UKLKhan
Starting Member

5 Posts

Posted - 15 May 2002 :  10:31:20  Show Profile
Is there a MOD for Snitz that automatically e-mail's when someone's replied to the topic WITHOUT having to subscribe [Automatically]


Thanks,


Khan


http://www.uklans.com

Go to Top of Page

XavierSlater
Junior Member

United Kingdom
137 Posts

Posted - 15 May 2002 :  11:37:49  Show Profile  Visit XavierSlater's Homepage
We implemented something like this on our forum, where it included the message content as part of the Subscription post.

We then found out that if you allowed "board wide subscriptions", emails went out that included content from HIDDEN forums, including ones that were used to contain business sensitive information.



Just a word of warning to test this before you implement it.

Regards,

Stuart

Go to Top of Page

UKLKhan
Starting Member

5 Posts

Posted - 15 May 2002 :  11:41:08  Show Profile
Thanks for the info, But what I'm looking for is a MOD that when you post a topic it automatically will e-mail you and all the ohters that have replied when a user replys to the post.

Do you know what I mean? [without having to subscribe to a forum]


Cheers

Khan

http://www.uklans.com

Go to Top of Page

Astralis
Senior Member

USA
1218 Posts

Posted - 16 May 2002 :  19:33:21  Show Profile  Send Astralis a Yahoo! Message
That feature was eliminated from the previous version of Snitz Forum last year and replaced with Subscriptions. I like the idea of subscriptions but I think it's intuitive to have "email when someone replies to this post".

Perhaps someone will know how to turn that feature back on.

Go to Top of Page

Astralis
Senior Member

USA
1218 Posts

Posted - 18 May 2002 :  17:05:47  Show Profile  Send Astralis a Yahoo! Message
quote:

Before I read your post Snowblind, I did find a modification in the archived posts which works fine and only adds two extra lines in inc_subsciption.asp.

See topic here: http://forum.snitz.com/forum/topic.asp?ARCHIVE=true&TOPIC_ID=16549

You may have to add one or two extra line breaks (& vbNewline) in order for it to look good in the e-mail but it works fine.

But thanks anyway - sorry I was late getting back on that.

tec



I checked this out and found some problems: your message:

quote:

actually, I found a MUCH easier solution:
the message body can still be retrieved at this point by a simple request.form("message")
so now, around line 300 of inc_subscription.asp, after
strMessage = strMessage & fLangN(strLangInc_Subscription00160, TopicName) & "." & vbNewline & vbNewline

I added
strMessage = strMessage & "Message:" & request.form("Message") & "."

and it works!



The code in inc_Subscriptions after line 300 does not exist anywhere in the document so I'm hesitant to add any code in case there are problems.


Go to Top of Page

johngo33
Starting Member

14 Posts

Posted - 20 May 2002 :  11:01:24  Show Profile
I think this thread will help you:
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=27489

It offers regular mail or HTML mail (unicode format) to subcribers.

Go to Top of Page

joatham
Junior Member

United Kingdom
169 Posts

Posted - 21 May 2002 :  11:12:05  Show Profile  Visit joatham's Homepage
My ccHTMLMail mod does this, but only if the mail is sent in html format. I could add the code to the normal format email if you want me to though, let me know if you require it and I will take a look at putting it into the standard Snitz code for non-html mail.

John

For snitz mods and information, see the Cosmic Cat Snitz Mods Homepage
Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 21 May 2002 :  17:06:00  Show Profile
John,

I wouldn't mind it for my forum. I have the ccHTMLMail installed, but would like it to email the content for non-html as well.

quote:

My ccHTMLMail mod does this, but only if the mail is sent in html format. I could add the code to the normal format email if you want me to though, let me know if you require it and I will take a look at putting it into the standard Snitz code for non-html mail.

John

For snitz mods and information, see the Cosmic Cat Snitz Mods Homepage



Regards,

Webmaster @ Classic Motorycling Australia
Classic Motorcycling Australia
Go to Top of Page

joatham
Junior Member

United Kingdom
169 Posts

Posted - 23 May 2002 :  20:32:44  Show Profile  Visit joatham's Homepage
I will take a look at it this weekend, will post a follow-up here when it's ready!

John
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.19 seconds. Powered By: Snitz Forums 2000 Version 3.4.07