Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    by default in the HTML mode, the emails module expects to receive exact HTML to be sent that is it does not format it in any way, so to have the text formatted you can either:

    – switch to Text and enter in the editor the <br/> and <p></p> tags.
    – add the code below in your theme functions.php file it should insert the tags automatically.

    
    add_filter( "wpadverts_message", function( $mail_args ) {
      $mail_args["message"] = wpautop( $mail_args["message"] );
      return $mail_args;
    } );
    
    
Viewing 1 replies (of 1 total)
  • The topic ‘Notifications Not Formatting’ is closed to new replies.