Quote:
Originally Posted by Dontom
One more thing,
if someone adds image code to his email it is not getting displayed correct.
e.g. contained in the email (minus spaces):
[img ]http://www.mtb-news.de/forum/images/ibc/ibclogo_ececec.gif[/img ]
in a forumpost it looks like:
[img ][url='http://www.mtb-news.de/forum/images/ibc/ibclogo_ececec.gif[/img ]']http://www.mtb-news.de/forum/images/ibc/ibclogo_ececec.gif[/img ][/URL ]
Any advice?
|
I'll contact you off forums to get a copy of that email to see if I can determine why it did it, and to resolve it
Quote:
Originally Posted by snoopy5
Hi
I am a little bit confused. Where is the difference between this script above and this one?:
https://vborg.vbsupport.ru/showthrea...=169247&page=2
I am very interested in this hack. I only need a slight modification. I would be willing to pay for this.
I need this mailinglist functionality depending on the usergroup. I do not want that every user can use this feature, only premium members and Moderators shall be allowed to use this feature.
Would that be possible?
Thanks in advance
|
Right now.. no difference in the two mods. As I get things all debugged, I'll begin working on the 3.7 version more and then these two will separate quite a bit.
This is very possible and I'll plan it in for the next version. Right now it allows you to restrict who can reply via email, but ti doesn't restrict who can subscribe to instant email notifications.
Let me check out some of these bugs and get them cleaned up and I'll code that in for the next version as well
Sorry for my delay in responding snoopy. As I mentioned, I spent the last week beating a motherboard and cpu that didn't want to get along against the wall... O the joys of build your own system
Quote:
Originally Posted by yotsume
Now all this hack needs is a simple way for the admin to be able to subscribe groups of users to a specific forum or thread they want to from the admin panel.
This is almost a great hack just one very important key feature missing still! Besides users being able to subscribe... admins need to be able to do this as well from their end!
PLEASE ADD THIS ASAP!
Any chance this hack will work on vb3.6.4?
|
That is already in!
After installation, go to the usergroup manager and turn on auto notification and enter in the forumids you want to set that usergroup to automatically be subscribed to instant notification for. Then under Usergroups is "Auto Subscriptions", or under the heading of "Email Integration" is another link to "Auto Subscriptions".
As far as 3.6.4, I have not tested it on that, though I do not forsee any issues with this not working with 3.6.4. Logically, it should work for any of the 3.6x versions though it has not been tested.
Quote:
Originally Posted by abrecher
By default it seems that users are subscribed via text email instead of HTML. How can I change that without forcing all of them to use HTML ?
|
So you want users to get html emails. But they can go into their UserCP and select to receive text messages if they want?
To do that you'll need to change the default value of the field in the usertable.
Go to your Admincp -> Maintence -> Execute SQL Query ->
If you use a table prefix like vb3_ run this query and replace vb3_ with your table prefix.
Code:
ALTER TABLE `vb3_user` CHANGE `ei_format` `ei_format` INT( 3 ) NOT NULL DEFAULT '1';
If you do NOT use a table prefix then run this query:
Code:
ALTER TABLE `user` CHANGE `ei_format` `ei_format` INT( 3 ) NOT NULL DEFAULT '1';