PDA

View Full Version : web master email?


RedGTiVR6
01-30-2008, 09:37 PM
What is the code used to call the email address that's entered in the web master email field?

*I hope that question just made sense...*

Mosh
01-31-2008, 06:15 AM
If I am reading this right, then I think you may be after this: $vboptions[webmasteremail]

Opserty
01-31-2008, 06:12 PM
Or in PHP code:
$vbulletin->options['webmasteremail']

RedGTiVR6
02-03-2008, 01:35 AM
hrmmm - that's not what I'm looking for apparently.

I believe this is the area of the code I'm trying to modify:

$formemailadress is a field that you set, that's where the email is actually SENT TO.

I've searched the code and haven't found 'webmasteremail' in there...so I'm wondering if it's 'hard coded' in this code?

I don't know how to code, but I can usually make things do what I want if it already exists. Perhaps it's '$email'?

$emails = explode(';', $formemailaddress);
foreach ($emails AS $email)
{
vbmail($email, $posttitle, $formsend);