There should be no problem using entities, in your case that's not the problem. Usually when you view signs like  it means the issue is related to encoding. Add "<meta charset="utf-8">" in your email template <head> section. Email clients will follow this encoding afaik.Hmm... no. Is there a setting to do that in MailWizz? I did some Googling to see how to do it in my code, but it looks like email clients ignore the meta tags and use whatever is in the email header. Additionally, their suggestion was to avoid encoding problems altogether by using HTML entities, which is what I'm doing in my case. Here's a link to the article from Email On Acid.
i don't think so, but you can try a campaign as well.Might it be because I was using the "Test Template" button to send to Litmus, instead of fully sending the campaign?
<script>
$( document ).ready(function() {
$( ".btn-go-next" ).click(function(event) {
var $iframe = $('.cke_wysiwyg_frame');
$iframe.ready(function() {
var strHTML = $iframe.contents().find("html").html();
var count = (strHTML.match(/YOURMETANAME/g) || []).length;
console.log(count);
if(count == 0)
{
$iframe.contents().find("head").append('<meta name="YOURMETANAME" charset="utf-8">');
}
});
});
});
</script>
It isn't. If you want to use it for your use case, no problem at all, if it works for you is fineOf course that's a solution.
The real solution is to stop copying text from a charset encoding and paste it in another charset encoding which can't handle some characters. There's nothing magic to it, it's just common sense, there's no automated way to convert all the bad bad characters in something meaningful from one charset to another.We need a "real" solution