• Hello. It looks like the “Email Template” plugin is not compatible with Elastic Email ( ElasticEmail.com ). I’m right?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi.
    Do you want to know if with this plugin you can do a structure in the Elastic Email plugin?

    Regards

    Hi Gonzalesc!
    If the message header is text/html and not text/plain then you will be able to send via Elastic Email.

    Thread Starter xtensions

    (@williamews)

    Hi Gonzalesc–

    The problem is that when the email is sent via Elastic Email API, the output in the receiver’s inbox looks mess up. So I guess it’s not compatible with Elastic Email.

    Thanks!

    Hi.

    This seems to be a topic of the Elastic plugin, but you can use this code in your functions of your active theme:

    add_filter('wp_mail','custom_wp_mail',10,1);
    
    function custom_wp_mail($compact) {
    
    	$compact['headers'] = array('Content-Type: text/html; charset=UTF-8');
    
    	return $compact;
    }

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Compatibility With ElasticEmail’ is closed to new replies.