vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Mini Mods - Email Reminder for inactive users (https://vborg.vbsupport.ru/showthread.php?t=264268)

adwade 07-22-2011 03:57 AM

Two brief questions:
Quote:

Originally Posted by TalkVirginia (Post 2210012)
You can find the email templates by going to the addon settings. There is a link there to modify the subject and the email body. Your forum must be in DEBUG mode in order to modify the base version. You can only translate them when in non-debug mode.
Jim

1)I don't quite understand this reasoning about revising the subject/body of the email. I've always just used the Copy Default Text button(i.e. Translations Feature) to 're-word' things as needed. Is there any reason, why that would not work with this add-on?(i.e. Why would one use DEBUG mode to revise your original text, when the translate feature is available?)

Quote:

Originally Posted by tandy (Post 2221807)
Is it a good idea to wait for a new revision?

2)With the consequences being so great, is this add-on ready for prime-time use? I don't want to install it and have lots of angry/inactive users, if something can still go amiss right now using the existing code we can D/L at present.(i.e. Is it safe?)

realmr 10-19-2011 10:34 PM

any updates Jim ?

Artes_Marciales 10-20-2011 07:43 PM

Amazing, thanks! : D

SamirDarji 12-02-2011 06:31 AM

Reminder for me to look into this. I can't believe I didn't see it before!

busybeeburns 04-29-2012 04:19 PM

Hi,

thanks for the mod.

1) Does it work for secondary usergroups or primary only? I have various smaller secondary groups within registered members but doesn't seem to be sending any emails out to those alone.

2) Could this mod essestially be used as a mailout on a cronjob basis, with the phrase template altered each time and inactive time ~0.1?

YankForum 07-31-2012 04:06 PM

talkvirginia this is super greate , i miss confused other plugins with this one , but of course this is the best one among them , i dont know why it never won MOTH which it deserves to win.

how come there is no author link ? it's totally free ?

tehPARADOX 08-03-2012 05:28 AM

Doesn't seem as effective anymore.

ennio 09-10-2012 06:33 PM

It would be nice if it had a feature to send the reminder to an user manually. So, after you search a user on the results page you could select send reminder to user.

waynne 01-14-2013 11:32 AM

I have a fix and hack for this to be applied to functions_remindermail.php

This fixes the lack of userid in the unsubscribe email link and log files...
Find

Code:

$sql = "SELECT username, email, ".
          "usergroupid, ".

Replace with
Code:

$sql = "SELECT username, email, userid, ".
          "usergroupid, ".

The following restricts reminder emails to members who have been active in the last year. This is helpful to reduce the risk of spamming old defunct addresses.

Find (3 instances)
Code:

"AND options & 16 ". 
          "AND rmoptout = 0 ";

Replace with
Code:

"AND options & 16 ".
                  "AND TIMESTAMPDIFF(DAY, FROM_UNIXTIME(lastactivity), FROM_UNIXTIME(UNIX_TIMESTAMP())) <= '365'".
          "AND rmoptout = 0 ";

(Caution :- You must add this code in all 3 places or you'll end up repeatedly emailing the same user.)


All times are GMT. The time now is 01:46 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01107 seconds
  • Memory Usage 1,739KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete