wp_mail_original_content filter-hook . WP 2.8.0
Filters the original content of the email.
Give Post-By-Email extending plugins full access to the content, either the raw content, or the content of the last quoted-printable section.
Usage
add_filter( 'wp_mail_original_content', 'filter_function_name_3471' ); function filter_function_name_3471( $content ){ // filter... return $content; }
- $content(string)
- The original email content.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
In file: /wp-mail.php
wp-mail.php 189
$content = apply_filters( 'wp_mail_original_content', $content );