The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
|||
|
|||
![]()
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* |
#12
|
|||
|
|||
![]()
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.
|
#13
|
|||
|
|||
![]()
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? |
#14
|
|||
|
|||
![]()
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)); |
#15
|
|||
|
|||
![]()
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 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)); |
#16
|
|||
|
|||
![]()
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! |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|