MyBB Community Forums

Full Version: [Solved] When registered, send auto welcome message as pm!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need it guys pleas help me to do it

Thank you
I think everyone is reluctant to make to make mods before gold comes out, cause they might require a re-coding.
Open inc/integration.php
Find:
function accountCreated($uid)
{
	// Called after an account is created
	global $db;
}
Replace with:
function accountCreated($uid)
{
	// Called after an account is created
	global $db;
	$subject ="Subject of the private message";
	$message = "This is the message to be sent to the user";
	$time = time();
	$db->query("INSERT INTO ".TABLE_PREFIX."privatemessages (uid,toid,fromid,folder,subject,icon,message,dateline,status,includesig,smilieoff,receipt,readtime) VALUES ($uid,$uid,-2,1,'$subject',0,'$message',$time,0,'no','no',0,0)");
}

See if that works.
Thank you for reply.

I will try it and tell what is the result
thank you very much.

it's working fine on localhost!
sorry to say that...it's not working. may be working in localhost...but not working in the web...