Changeset 14924 for trunk/wp-mail.php
- Timestamp:
- 05/26/2010 02:42:15 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-mail.php
r14518 r14924 37 37 $pop3 = new POP3(); 38 38 39 if ( !$pop3->connect( get_option('mailserver_url'), get_option('mailserver_port') ) || !$pop3->user( get_option('mailserver_login') ) ) 39 if ( !$pop3->connect( get_option('mailserver_url'), get_option('mailserver_port') ) || !$pop3->user( get_option('mailserver_login') ) ) 40 40 wp_die( esc_html( $pop3->ERROR ) ); 41 41 42 42 $count = $pop3->pass( get_option('mailserver_pass') ); 43 43 44 if( false === $count ) 44 if( false === $count ) 45 45 wp_die( esc_html( $pop3->ERROR ) ); 46 46 47 47 if( 0 === $count ) { 48 48 $pop3->quit();
Note: See TracChangeset
for help on using the changeset viewer.