我有一个 phpBB 论坛,想写一个外部类,可以用来向论坛的一些用户发送私人消息。
另外,我想自动化在论坛上发送帖子的过程,因为可以在其中包含一些自动通知。
类似的东西:
PhpbbControl::sendPM(Integer $from_user, Array $to_users, String $content);
// ^ sends a new private message, returns false on failure
PhpbbControl::newPost(Integer $forum_id, Integer $from_user, String $content);
// ^ creates a new post on a given forum, returns false on failure
有什么想法或已知的 MOD 可以提供吗?
谢谢