Quote:
Originally Posted by upnorth
I have disabled the PM feature on my board. Any way to make this Add-on send an email instead of a PM?
|
Not at this moment, but it's pretty easy with some modding. Open the product file and find (twice) the part starting with "// create the DM to do error checking and insert the new PM" until $pmdm->save();.
Replace it (twice) with this:
PHP Code:
vbmail('yourmail@provider.com', $pmtitle, $pmmessage, 1, $vbulletin->options['bbtitle']);
And make sure you replace
yourmail@provider.com with the correct one to send the mail to. This is for sending it to one person. If you want to send it to multiple persons, just use the line multiple times.