MyBB Hacks

Full Version: PM to New Users
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Just an update to this plugin, based off Tritop's update (thanks Tritop!).

I'm sure this already exists, but someone may want this for whatever reason.  All it does is send a PM to a new registrant to your board.
You can configure settings by visiting your settings section in the AdminCP.
Change  ;  to  , at the last line of the below code in the plugin

Code:
$db->insert_query($prefix.'settinggroups', array(
		'name' => 'pmregister', 
		'title' => 'PM to New Users Options',
		'description' => '',
		'disporder' => 200, 
		'isdefault' => $no;


to

Code:
$db->insert_query($prefix.'settinggroups', array(
		'name' => 'pmregister', 
		'title' => 'PM to New Users Options',
		'description' => '',
		'disporder' => 200, 
		'isdefault' => $no,

My bad, thanks.

I should check my edits >_>
Thank you for the final touch. Smile
Can I use {username} on the PM Subject?
Nope.
Ok. Thank you.
I think You can edit the plugin file to make {username} allow-able.

Either way is this: http://forum.mybbz.net/showthread.php?tid=37
v1.2: Mark as MyBB 1.8 compatible
Thanks zinga Smile
Pages: 1 2
Reference URL's