Noptin_Mailer::ensure_email_content( $args )
Ensures that our email messages are not messed up by template plugins.
Return Return
(array) wp_mail_data.
Source Source
File: includes/class-noptin-mailer.php
public function ensure_email_content( $args ) { if ( $this->disable_template_plugins ) { $args['message'] = $this->wp_mail_data['email']; } return $args; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.3.0 | Introduced. |