Hi I would like to put one of the text symbols from http://fsymbols.com/all/ website into my coldfusion cfmail subject line, How can I do this? I followed the instruction from this post ColdFusion cfmail special characters in subject line and doesn't works for I guess these symbols? I am using scissor ✂ symbol and it gets converted to ✠when I get the email
Please suggest or help.
<cfset strSubject="✂#qrynotify.EmailSubject#">
<cfset strSubject=ToBase64(strSubject, "utf-8")>
<cfmail from="test@tesy.com" to="#qrynotify.Email#"
subject="=?utf-8?B?#strSubject#?="
server="localhost" type="html" charset="utf-8">#qrynotify.EmailContent#</cfmail>