vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Contact Details Question (https://vborg.vbsupport.ru/showthread.php?t=132923)

LauraM 12-07-2006 08:55 PM

Bump!

Oh, and the above posts WAS originally two different posts......I have no idea why it automerged those two posts. They were more than a day apart. *shrug*

peterska2 12-07-2006 10:48 PM

Using a redirection email account can only be used as the webmaster account but doing so does have the disadvantages of all site database errors also being mailed to everyone on the redirection list.

LauraM 12-10-2006 12:26 PM

Sorry it's taken so long to get back.........working long hours.

As to everyone receiving the database errors, that should not be a problem, I don't think.

How would I set that up? Do I change the webmaster email field? Do I have to go into someplace else?

What I want to happen is to have the "contact us" be available to non-registered people still, so I guess I'd still have to have the "contact us" field show the current php setup...........so I am not sure where to change the email address to what would be the new central email?

calorie 12-10-2006 12:44 PM

Add a plugin using the sendmessage_docontactus_complete hook:
Code:

$url =& $vbulletin->url;
eval(fetch_email_phrases('contactus', $languageid));

// this one is to the contact person
vbmail($destemail, $subject, $message, false, $vbulletin->GPC['email'], '', $name);

// these are to the other people
vbmail('who1@domain1.tld', $subject, $message, false, $vbulletin->GPC['email'], '', $name);
vbmail('who2@domain2.tld', $subject, $message, false, $vbulletin->GPC['email'], '', $name);
vbmail('who3@domain3.tld', $subject, $message, false, $vbulletin->GPC['email'], '', $name);

eval(print_standard_redirect('redirect_sentfeedback', true, true));

EDIT: also see the next post for an alternative

calorie 12-10-2006 01:30 PM

Another way you could do it is as follows. Set your Contact Us Options like this:
(click the question mark in the Contact Us Options block in the ACP for details)
Code:

{1} Site Feedback
{example@example.com} Help
Registration

And then instead add this plugin using the sendmessage_docontactus_complete hook:
Code:

$url =& $vbulletin->url;
eval(fetch_email_phrases('contactus', $languageid));

// this one is to the contact person based on the contact us options
vbmail($destemail, $subject, $message, false, $vbulletin->GPC['email'], '', $name);

// this one is a copy to you if you are not the contact person
if ($destemail != $vbulletin->options['webmasteremail'])
{
        vbmail($vbulletin->options['webmasteremail'], $subject, $message, false, $vbulletin->GPC['email'], '', $name);
}

eval(print_standard_redirect('redirect_sentfeedback', true, true));


LauraM 12-18-2006 11:47 PM

Sorry it took me so long to get back...........just lots of stuff going on, plus our hosting company moved to a new datacenter so we were down for a while..

Anyway, I THINK I have it working now. If I have any further problems, I'll post back.

Thanks for all your help, everyone!


All times are GMT. The time now is 01:22 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.00960 seconds
  • Memory Usage 1,725KB
  • 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete