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.
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