I have updated this as well if anyone is interested, here is a screen shot and I added it to the control panel. I eliminated the other queries such as lastpost etc.. since I was only lookin to Mass PM a group or all groups. Here it is:
PHP Code:
<?php
require("./global.php");
adminlog();
cpheader();
if ($action=="") {
echo "<p>In the private message, you may use \$username, \$password and \$email.</p>";
doformheader("masspm","masspm");
echo "<tr><td colspan=2><b>Private message to groups where:</b></td></tr>\n";
if ($pwdincp!=0) {
makeinputcode("and password contains","apassword");
}
makechoosercode("Usergroup is:","usergroupid","usergroup",-1,"Any");
makehiddencode("fromuserid","$bbuserid");
makeinputcode("Subject:","title");
maketextareacode("Message:","message","",10,40);
doformfooter();
}
if ($action=="masspm") {
if ($condition=="") {
$condition="1=1";
if ($ausername!="") {
$condition.=" AND INSTR(username,'".addslashes(htmlspecialchars($ausername))."')>0";
}
if ($apassword!="") {
$condition.=" AND INSTR(password,'".addslashes($apassword)."')>0";
}
if ($usergroupid!=-1 and $usergroupid!="") {
$condition.=" AND usergroupid=$usergroupid";
}
if ($usertitle!="") {
$condition.=" AND INSTR(usertitle,'".addslashes($usertitle)."')>0";
}
}
$users=$DB_site->query("SELECT userid,username,password,email FROM user WHERE $condition");
while ($user=$DB_site->fetch_array($users)) {
$userid=$user[userid];
$message=$message;
$message=str_replace("\$email",$user[email],$message);
$message=str_replace("\$username",$user[username],$message);
$message=str_replace("\$password",$user[password],$message);
$sql=$DB_site->query("INSERT INTO privatemessage (privatemessageid, folderid, userid, touserid, fromuserid, title, message, dateline, showsignature, iconid, messageread) VALUES (NULL, '0', '$user[userid]', '$user[userid]', '$fromuserid', '".addslashes($title)."', '".addslashes($message)."', UNIX_TIMESTAMP(), '1', '0', '0')");
echo "PM sent to $user[userid] <br>";
}
}
?>
Here is the control panel addition:
find this in admin/index.php below "User Groups and Permissions:
Code:
<tr><td><hr></td></tr>
add this above it:
Code:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr bgcolor="#3F3849"><td><font color="#BCB6CD">
<b>Mass Private Message</b>
</font></td></tr></table>
<a href="masspm.php"> Create Message </a> |
</td></tr>
Here is the pic: