Hello,
I am encountering a peculiar problem while creating an email campiagn programitically. The Apostophe in my email is being replaced with #39S;. Can you please help me in resolving this issue.
Hi Anupriya,
When you create your email instead of using that apostrophe try to use ' and when you preview the HTML it should work.
Let me know if this helps,
OK. I resolved the issue by applying the following code.
$html= str_replace("#39;", "'", $html);
Thanks