Changeset 4947
- Timestamp:
- 02/26/07 03:42:25 (2 years ago)
- Files:
-
- trunk/wp-includes/pluggable.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/pluggable.php
r4946 r4947 158 158 function wp_mail($to, $subject, $message, $headers = '') { 159 159 global $phpmailer; 160 error_log("mailing $subject\n", 0); 160 161 161 if ( !is_object( $phpmailer ) ) { 162 162 require_once(ABSPATH . WPINC . '/class-phpmailer.php'); … … 214 214 215 215 $result = @$phpmailer->Send(); 216 error_log("mailing result $result\n", 0); 216 217 217 return $result; 218 218 }
