Add 'woocommerce_mail_content' to preview

Added the 'woocommerce_mail_content' filter which is used before sending the email in /includes/emails/class-wc-email.php#L465 to the preview
This commit is contained in:
Nico Hauser 2016-05-20 16:47:18 +02:00
parent 33d325cd88
commit d75d784e48
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ class WC_Admin {
$email = new WC_Email();
// wrap the content with the email template and then add styles
$message = $email->style_inline( $mailer->wrap_message( $email_heading, $message ) );
$message = apply_filters( 'woocommerce_mail_content', $email->style_inline( $mailer->wrap_message( $email_heading, $message ) ) );
// print the preview email
echo $message;