if subject contains ', it doesn't encode correctly. However, it works fine in email body, eg. Some'd One looks good in body content.
{{subject}}dynamicTemplateData = {subject: "You've been"}You've BeenHi @januszhou,
Thanks for reporting this! I've added this to our backlog for further investigation.
With Best Regards,
Elmer
@thinkingserious I had a look at this one & it seems like the sendgrid API does not support some special characters ' , ` in the subject. Check this.

@thinkingserious i faced same issue. Is there any update on this please?
@januszhou @geekyd @nvthai
We actually have a note about this in our docs. The encoding that happens is just part of handlebars and is talked about in handlebars documentation:
Handlebars HTML-escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash", {{{.
So with all that said make sure you are using "triple-stash", {{{.
@kylearoberts it works!
thank a lot !
Going to close it since we have a fix now
Most helpful comment
@januszhou @geekyd @nvthai
We actually have a note about this in our docs. The encoding that happens is just part of handlebars and is talked about in handlebars documentation:
So with all that said make sure you are using "triple-stash", {{{.