vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   E-mailing new users question... (https://vborg.vbsupport.ru/showthread.php?t=5929)

12-24-2000 09:28 PM

Hi everyone,

I am trying to set my vBulletin up to automatically e-mail all new users with a custom welcome message. This is to increase participation from new members and make them feel welcomed and wanted.

Now, I have created two new templates: welcomeemail and welcomeemailtitle, I believe, with the messages and title - but where do I go from there? Someone I know was helping me and he was telling me to change the member.php (for .php3 in my case) - what do I change/add? I'm relatively new to the software and am by no means a PHP expert, so I'm hoping this isn't complicated. Can anyone help?

12-25-2000 11:09 PM

Anyone?

12-25-2000 11:27 PM

Since this is not supported by default by vBulletin, you will probably be better off in the Code Hacking forum. I'll move this post there now.

John

12-26-2000 07:56 PM

In Member.php3 look for:
Code:

      } else {
        eval("echo standardredirect(\$bbtitle,\"".gettemplate("redirect_registerthanks")."\",\"index.php\");");
      }

and replace with:
Code:

      } else {
        // Send Welcome Message - Wayne Luke
        eval("\$message = \"".gettemplate("welcomeemail")."\";");
        eval("\$subject = \"".gettemplate("welcomeemailsubject")."\";");
        mail("\"$username\" <$email>",$subject,$message,"From: \"$bbtitle User Manager\" <$webmasteremail>");
        //end welcome message

        eval("echo standardredirect(\$bbtitle,\"".gettemplate("redirect_registerthanks")."\",\"index.php\");");
      }

This is the same thing that I sent you via EMAIL. Since you cannot accept MIME attachments the best way for you to make this change is to do it manually via a good text editor like TextPad.


All times are GMT. The time now is 04:03 AM.

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.00951 seconds
  • Memory Usage 1,714KB
  • 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
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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