Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi moosechic,

    You are correct. This is actually a bit of a bug in PMPro. We’ll be working on a fix which might make it into 1.7.2. For now, here’s a quick fix that will get this working in 1.7.1. You can place this in your theme’s functions.php file, or create a quick plugin.

    function my_wp_mail_content_type( $content_type ) {
    	add_action( 'phpmailer_init', 'pmpro_send_html' );
    
    	//change to html if not already
    	if( $content_type == 'text/plain') {
    		$content_type = 'text/html';
    	}
    
    	return $content_type;
    }
    add_filter( 'wp_mail_content_type', 'my_wp_mail_content_type' );

    Hope this helps!

    Thank You

    Hi moosechic,

    I’m going to mark this as resolved. Version 1.7.2.1 of PMPro fixes this issue.

    Thank You

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘confirmation email – link not working’ is closed to new replies.