Changeset 1023

Show
Ignore:
Timestamp:
04/29/08 19:13:26 (7 months ago)
Author:
so1o
Message:

updated function for sending email

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bb-moderation-hold/trunk/moderation.php

    r1013 r1023  
    66Author: Aditya Naik 
    77Author URI: http://www.adityanaik.com/ 
    8 Version: 0.4 
     8Version: 0.4.1 
    99*/ 
    1010/** 
     
    5959 * 
    6060 * @author  Aditya Naik <aditya@adityanaik.com> 
    61  * @version v 0.01 Sun Apr 08 2007 01:37:30 GMT-0400 (Eastern Daylight Time) 
     61 * @version v 0.02 Sun Apr 08 2007 01:37:30 GMT-0400 (Eastern Daylight Time) 
    6262 */ 
    6363function bb_moderation_hold_mail_moderation($obj = 'T') { 
     
    7373 
    7474  $message = __("You have a new $s in the moderation queue."); 
    75  
    76   mail( $email, bb_get_option('name') . ': ' . __('Moderation Alert'), 
    77     sprintf( $message, "$obj"), 
    78     'From: ' . bb_get_option('admin_email') 
    79   ); 
     75  bb_mail( $email, __('Moderation Alert'), sprintf( $message, "$obj")); 
    8076} 
    8177