• Resolved biels

    (@biels)


    I’m trying to send welcome email in html format but it’s only plain text. Is that a WP thing or something that you can do with this plugin?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @biels,

    Thanks for contacting us,

    I hope you are doing well, We have forwarded this to our technical team we will get back to you.

    Thanks & Regards

    WP Experts Support Team

    Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @biels,

    Yes, it’s possible and also there are more functionalities in the new user-approved premium one, but you can use this code in your theme functions.php. A welcome email will send as HTML.

    Please check it and let me know if any issue occurs

    add_filter('new_user_approve_welcome_user_message', 'add_html_content_type', 10, 2);
    
    function add_html_content_type ($message, $user_email) {
    	
    	add_filter( 'wp_mail_content_type', 'welcome_html_content_type');
    	return $message;
    }
    function welcome_html_content_type () {
                $content_type = 'text/html';
                return $content_type;     
        }

    Thank you

    Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @biels,

    We are resolving this thread due to a lack of activity if you have any questions please open a new thread.

    Thank you

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

The topic ‘email in html format possible’ is closed to new replies.