blob: 9d058726173273dde538f4ce3c6f085d27515cc7 (
plain)
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
|
<?php
/**
* $Header: /cvsroot/bitweaver/_bit_boards/boards_comments_inc.php,v 1.5 2008/06/18 09:17:59 lsces Exp $
* $Id: boards_comments_inc.php,v 1.5 2008/06/18 09:17:59 lsces Exp $
*
* intermediate include file to provide centralized place to pre/post handle comments_inc include
*
* @author spider <spider@steelsun.com>
* @version $Revision: 1.5 $ $Date: 2008/06/18 09:17:59 $ $Author: lsces $
* @package boards
*/
/**
* Initialization
*/
require_once (LIBERTY_PKG_PATH.'comments_inc.php');
if( !empty( $storeComment ) && $gContent->getPreference('boards_mailing_list') ) {
if( empty( $storeComment->mErrors ) ) {
$storeComment->loadComment();
require_once( KERNEL_PKG_PATH.'BitMailer.php' );
$bitMailer = new BitMailer();
$email = $gContent->getPreference('boards_mailing_list').'@'.$gBitSystem->getConfig( 'boards_email_host', $gBitSystem->getConfig( 'kernel_server_name' ) );
$headerHash['mail_from'] = $gBitSystem->getConfig( 'boards_sync_user' ).'@'.$gBitSystem->getConfig( 'boards_sync_mail_server' );
if( $storeComment->getField( 'user_id' ) == ANONYMOUS_USER_ID ) {
$headerHash['from_name'] = $storeComment->getField( 'anon_name' );
} else {
$userInfo = $gBitUser->getUserInfo( array( 'user_id' => $storeComment->getField( 'user_id', $gBitUser->mUserId ) ) );
$headerHash['from_name'] = !empty( $userInfo['real_name'] ) ? $userInfo['real_name'] : $userInfo['login'];
$headerHash['sender'] = $userInfo['email'];
}
$headerHash['x_headers']['X-BitBoards-Comment'] = $storeComment->mCommentId;
$messageId = $bitMailer->sendEmail( $storeComment->getTitle(), $storeComment->parseData(), $email, $headerHash );
$storeComment->storeMessageId( $messageId );
}
}
?>
|