Quote:
Originally Posted by WATRD
Suppose I wanted to change the address that the mail from this mod goes to, but didn't want to change my admin mail...
I see the operative line;
vbmail($vbulletin->options['webmasteremail'], $isbot_subject, $isbot_message, true);
How would I format hardcoding foo@foo.com in place of the 'webmasteremail'?
|
Got it.
vbmail("foo@foo.com", $isbot_subject, $isbot_message, true);
Allows the mail to go to
foo@foo.com instead of the webmaster mail. We have the webmaster mail set up to go to a bit bucket, so that wasn't working for us.