mosDBTable( '#__messages', 'message_id', $db ); } function send( $from_id=null, $to_id=null, $subject=null, $message=null ) { global $database; global $mosConfig_site_name; if (is_object( $this )) { $from_id = $from_id ? $from_id : $this->user_id_from; $to_id = $to_id ? $to_id : $this->user_id_to; $subject = $subject ? $subject : $this->subject; $message = $message ? $message : $this->message; } $database->setQuery( "SELECT cfg_name, cfg_value" . "\nFROM #__messages_cfg" . "\nWHERE user_id='$to_id'" ); $config = $database->loadObjectList( 'cfg_name' ); $locked = @$config['lock']->cfg_value; $domail = @$config['mail_on_new']->cfg_value; if (!$locked) { $this->user_id_from = $from_id; $this->user_id_to = $to_id; $this->subject = $subject; $this->message = $message; $this->date_time = date( "Y-m-d H:i:s" ); if ($this->store()) { if ($domail) { $database->setQuery( "SELECT email FROM #__users WHERE id='$to_id'" ); $recipient = $database->loadResult(); $subject = T_('A new private message has arrived'); $msg = T_('A new private message has arrived'); mosMail($mosConfig_mailfrom, $mosConfig_fromname, $recipient, $subject, $msg); } return true; } } else { if (is_object( $this )) { $this->_error = T_('The user has locked their mailbox. Message failed.'); } } return false; } } ?>