OK Got It!!
For example: Create a php file:
PHP Code:
<?php
global $vbulletin;
require_once(DIR . "/includes/class_dm.php");
require_once(DIR . "/includes/class_dm_pm.php");
//pm system
$pmSystem = new vB_DataManager_PM( $vbulletin );
//pm Titel / Text
$pnTitel = "Your Title for the PM";
$pnText = "This is pm which was created automatically. Please do not reply to this pm.";
$pmSystem->verify_message( $pnText );
$pmSystem->verify_title( $pnTitel );
//Set the fields
$pmSystem->set('fromuserid', 1);
$pmSystem->set('fromusername', 'AWDevelopment');
$pmSystem->set('title', $pnTitel);
$pmSystem->set('message', $pnText);
$pmSystem->set('dateline', TIMENOW);
$pmSystem->set('iconid', 4);
$pmSystem->set_recipients("AWDevelopment");
//"send" pn
if ( $pmSystem->pre_save() === false )
{
if ($pmSystem->errors) {
return $pmSystem->errors;
}
}
else
{
$pmSystem->save();
}
?>
Create a new Scheduled Task with this new php file and voila!.
note: This only sends a pm to myself (I'm AWDevelopment).