Quotes in Sendmail
Quotes in Sendmail
When constructing a sendmail message in Script Builder, if you include quotes around a word, ZC is OK with it. However, if you switch to Free-flow Scripting, ZC throws an error for the quotes, and then you have to manually change them to apostrophes as a substitute.
OK in Script Builder, not OK in Free-flow Scripting:
Message : "Your suggested post titled "" + input.TITLE + "" was received.
Changed to make OK for Free-flow Scripting:
Message : "Your suggested post titled '" + input.TITLE + "' was received.