| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
 | <?php
try {
  send_to_lists($user, $data, $post_data);
}
catch (Exception $e) {
  print "<p>$e</p>\n";
}
function send_to_lists($user, $data, $post_data) {
  require_once(__DIR__ . '/PhpBB3.php');
  $phpbb = new PhpBB3();
/*
  require_once('Mail.php');
  require_once(__DIR__ . '/Bridge.php');
  require_once(__DIR__ . '/Util.php');
*/
  $postId = $data['post_id'];
  $userName = $user->data['username'];
  $userEmail = $user->data['user_email'];
 
  $subject = $post_data['post_subject'];
  $time = $phpbb->getPostTime($postId);
  $date = date(DATE_RFC2822, $time);
  $messageId = build_message_id($time, $postId, $_SERVER['SERVER_NAME']);
 
  $forumURL = 'http://' . $_SERVER['SERVER_NAME'] .
                  dirname($_SERVER['SCRIPT_NAME']);
  $body = $data['message'];
  print '<p>';
  var_dump($data);
  var_dump($post_data);
  var_dump($messageId);
  print '</p>';
/*
  $bridge = new Bridge();
  $to = $bridge->getLists($forumId);
  $messageId = build_message_id($postId);
  $headers = array(
    'To'           => implode(', ', $to),
    'From'         => "$userName <$userEmail>",
    'Subject'      => $subject,
    'Date',        => $date,
    'Message-Id',  => $messageId,
    'X-BeenThere'  => $forumURL,
  );
  $mailer = Mail::factory('sendmail');
  $mailer->send($to, $headers, $body);
*/
}
function get_post_time($postId) {
  throw_if_null($postId);
  global $db;
  $sql = 'SELECT post_time FROM ' . POSTS_TABLE . ' ' .
         'WHERE post_id = ' . $postId;
  $row = $this->get_exactly_one_row($sql);
  return $row ? $row['user_id'] : false;
}
?>
 |