Skip to content

Instantly share code, notes, and snippets.

@rafaehlers
Created January 16, 2017 15:16
Show Gist options
  • Save rafaehlers/b85b748c2373e0a4763c24f67ca69ee3 to your computer and use it in GitHub Desktop.
Save rafaehlers/b85b748c2373e0a4763c24f67ca69ee3 to your computer and use it in GitHub Desktop.
Modify the body content of a note
add_filter( 'gravityview/field/notes/email_content', 'gv_modify_notes_email_content', 10, 4 );
function gv_modify_notes_email_content( $email_settings ) {
extract( $email_settings );
$email_settings['message'] = '<h2>'.$message.'</h2>';
return $email_settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment