Hallo, Gast! (Registrieren)

Letzte Ankündigung: MyBB 1.8.38 veröffentlicht (30.04.24)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
Automatische Pm
#6
Also das ganze ist in der moderation.php wenn ein Thread freigeschaltet wird.
Ich will jetzt mit diesem Code das der Freischalter diese Test PM bekommt, aber er bekommt keine Sad
Trotzdem danke für die Hilfe.
PHP-Code:
global $mybb;

        require_once 
MYBB_ROOT."inc/datahandlers/pm.php";
        
$pmhandler = new PMDataHandler();

        
$subject "Thema freigeschaltet";
        
$message "Hallo, Test";



        
$toid $mybb->user['uid'];
        
$fromid $mybb->user['uid'];

        
$pm = array(
            
'subject' => $subject,
            
'message' => $message,
            
'toid' => $toid,
            
'fromid' => $fromid
        
);

        
$pmhandler->set_data($pm);
        if(!
$pmhandler->validate_pm())
            return 
false;
        else
        {
            
$pmhandler->insert_pm();
            
//return true;
        

Zitieren


Nachrichten in diesem Thema
Automatische Pm - von MrRight - 02.12.2012, 21:05
RE: Automatische Pm - von Jockl - 02.12.2012, 21:12
RE: Automatische Pm - von MrRight - 02.12.2012, 21:15
RE: Automatische Pm - von MrRight - 22.01.2013, 00:13
RE: Automatische Pm - von Jockl - 22.01.2013, 07:51
RE: Automatische Pm - von MrRight - 22.01.2013, 17:25
RE: Automatische Pm - von Jockl - 22.01.2013, 17:41
RE: Automatische Pm - von MrRight - 22.01.2013, 17:42
RE: Automatische Pm - von Jockl - 22.01.2013, 17:44
RE: Automatische Pm - von MrRight - 22.01.2013, 17:47
RE: Automatische Pm - von Jockl - 22.01.2013, 18:33
RE: Automatische Pm - von MrRight - 22.01.2013, 19:38
RE: Automatische Pm - von Jockl - 22.01.2013, 22:21
RE: Automatische Pm - von MrRight - 22.01.2013, 22:28
RE: Automatische Pm - von Jockl - 22.01.2013, 22:34
RE: Automatische Pm - von MrRight - 23.01.2013, 15:43
RE: Automatische Pm - von Jockl - 23.01.2013, 22:03
RE: Automatische Pm - von MrRight - 24.01.2013, 18:44
RE: Automatische Pm - von Jockl - 24.01.2013, 22:37
RE: Automatische Pm - von MrRight - 24.01.2013, 22:46
RE: Automatische Pm - von Jockl - 24.01.2013, 22:49
RE: Automatische Pm - von MrRight - 24.01.2013, 22:58
RE: Automatische Pm - von Jockl - 24.01.2013, 23:11
RE: Automatische Pm - von Luna - 26.10.2018, 00:44
RE: Automatische Pm - von StefanT - 26.10.2018, 09:55