vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Email notification upon new User Note? (https://vborg.vbsupport.ru/showthread.php?t=116538)

Noctavia 05-24-2006 09:15 AM

Email notification upon new User Note?
 
I have set up the User Notes on my forum so that people can see their own notes (not others) and can reply but not delete. I use this feature to inform them of when I have moved their threads, perhaps use it to inform them of some less than desirable posting etc. Is there a way to set it up so that when I add a new note, the user is emailed a note informing them a new user note has been added, and then gives them a link to view it?

noonespecial 10-19-2006 05:38 AM

This would be very sweet.

Paul M 10-19-2006 07:23 AM

Try this ;

Create a plugin linked to the usernote_donote hook.

Use this code;

PHP Code:

vbmail_start();
if (
$vbulletin->GPC['usernoteid'])
{
    
// Note Edited.
    
$subject 'User Note Edited';
    
$message 'Message for edited note.';
    
vbmail($vbulletin->userinfo['email'], $subject$message);
}
else
{
    
// Note Added.
    
$subject 'User Note Added';
    
$message 'Message for added note.';
    
vbmail($vbulletin->userinfo['email'], $subject$message);
}
vbmail_end(); 

Note: This is untested.

Caerydd 01-26-2007 11:22 PM

I've tested it. Seems to work fine. I'm going to work on a version that sends PMs, and perhaps has an option to chose email or PM.

kushal 05-22-2007 05:27 AM

yes, this works fine for me too. Is there a way to add the link to the entry or to the usernote with the email?

romeo12 04-20-2010 04:09 AM

Would love to have an option of PM instead of email.


All times are GMT. The time now is 02:40 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.01111 seconds
  • Memory Usage 1,721KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete