Question: Has anyone had any luck forcing Sendgrid Dynamic Templates to use ©
with a text module inside a single-column layout? It always produces the non-ASCII © for me.
Detail Gmail penalises any content that contains non-ASCII characters. When it detects this it shows the "Message clipped" message at the bottom. This is not an ideal professional look.
The source of this for us was the © copyright symbol. This is because Sendgrid Dynamic Templates always passes this directly with non-ascii version instead of using html-escaped ©
I tried to get around this by editing the html and forcing ©
but the editor simply replaced it with the bad © char each time.
Steps to reproduce:
I've raised a request with SendGrid as I think this is a bug, but a note for others meanwhile is that you can work around this by:
Code
component inside your single-column layout,This got me my outcome, but obviously isn't as easy to allow non-tech authors to maintain the content.
Update 9 Feb 2023
SendGrid support have confirmed the bug with all rich text editors. Copyright symbol is always replaced with unicode character instead of html escape code. Should ideally always convert known special characters to html escape codes, but at a minimum it should honour when someone overrides in the code
section rather than replacing it. Bug raised, no ETA or idea of internal prioritisation. Meanwhile workaround above will get you by ... just makes it harder for non-technical authoring.