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
#12
Also, wenn ich den Code jetzt im UserCP einfüge, funktioniert er ohne Probleme.
Nur bei der Freigabe eines Threads wird er nicht ausgeführt.
Ich habe ihn jetzt in der Moderation.php definiert.
Oder muss der wo anderst hin :o
PHP-Code:
// We are ready to send it.
require_once MYBB_ROOT.'inc/datahandlers/pm.php';
$pmhandler = new PMDataHandler;

$pmhandler->admin_override true// if you want Flood checking, useless if the PM is send automatically
$pmhandler->set_data(array(
    
'subject'    =>    'Hello!'// the PM title
    
'message'    =>    'Hi!'// The message
    
'icon'        =>    -1// the icon
    
'fromid'    =>    (int)$mybb->user['uid'], // UID who is sending the PM, MyBB Engine = -1
    
'toid'        =>    array(1345// users to send the PM to
));
if(
$pmhandler->validate_pm()) // insert if PM is valid
{
    
$pmhandler->insert_pm();
    return 
true;
}
return 
false
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