1

嗨,我想将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>
4

1 回答 1

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 进行评估。我还添加了 Peter 建议的 cfprocessingdirective。

谢谢

于 2012-12-20T18:19:25.987 回答