您好我想将http://fsymbols.com/all/网站中的一个文字符号放入我的网站 coldfusion cfmail主题行,我该怎么做?我按照这篇文章ColdFusion cfmail special characters in subject line的说明进行操作,并且不适用于我猜这些符号?我正在使用剪刀✂符号,当我收到电子邮件时它会被转换为“
”请建议或帮助。
<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>
答案 0 :(得分:1)
谢谢你们所有的努力,我能够解决这个问题。
<cfprocessingdirective pageEncoding="utf-8">
<cfmail from="test@tesy.com" to="#qrynotify.Email#"
subject="✂#qrynotify.EmailSubject#"
server="localhost" type="html" charset="utf-8">#qrynotify.EmailContent#</cfmail>
我将剪刀符号直接放入主题属性中,而不是在变量中设置它并让ColdFusion进行评估。我还添加了彼得建议的cfprocessingdirective。
由于