Changeset 10412
- Timestamp:
- 01/22/2009 10:31:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-mail.php
r10150 r10412 143 143 } 144 144 145 $subject = trim($subject); 146 145 $subject = trim($subject); 146 147 147 if ( $content_type == 'multipart/alternative' ) { 148 148 $content = explode('--'.$boundary, $content); … … 157 157 $content = trim($content); 158 158 159 //Give Post-By-Email extending plugins full access to the content 160 //Either the raw content or the content of the last quoted-printable section 161 $content = apply_filters('wp_mail_original_content', $content); 162 159 163 if ( false !== stripos($content_transfer_encoding, "quoted-printable") ) { 160 164 $content = quoted_printable_decode($content);
Note: See TracChangeset
for help on using the changeset viewer.