Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This filter handles the change between HTML and plain text summary emails. It applies to summary emails only.
Usage
add_filter( 'frm_html_summary_emails', '__return_false' );
Parameters
- $is_html (boolean): Set this to true to send HTML emails, to false to send plain text emails.
Examples
Use plain text emails
Use this code snippet to use plain text in the summary emails.
add_filter( 'frm_html_summary_emails', '__return_false' );