ColdFusion 错误 - cfinput 掩码不适用于 cfmail

发布于 2024-11-16 03:46:45 字数 769 浏览 4 评论 0原文

在 cfinput 字段上使用掩码会导致电子邮件无法通过。我摘下面具,电子邮件发送正常。

<HTML>
<HEAD>
</HEAD>
<BODY>
<cfform method="post" action="submit2.cfm" name="theform">
<cfinput type="text" name="SSN" size="30" mask="999-99-9999">
<input type="submit" name="submit" value="Submit">
</cfform>
</BODY>
</HTML>

<CFMAIL 
TO="[email protected]"
FROM="[email protected]"
SUBJECT="?">  
<cfoutput>
#Form.SSN# 
</cfoutput>
</CFMAIL>

Using a mask on a cfinput field causes the email to not go through. I remove the mask and the email is sent fine.

<HTML>
<HEAD>
</HEAD>
<BODY>
<cfform method="post" action="submit2.cfm" name="theform">
<cfinput type="text" name="SSN" size="30" mask="999-99-9999">
<input type="submit" name="submit" value="Submit">
</cfform>
</BODY>
</HTML>

and

<CFMAIL 
TO="[email protected]"
FROM="[email protected]"
SUBJECT="?">  
<cfoutput>
#Form.SSN# 
</cfoutput>
</CFMAIL>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咋地 2024-11-23 03:46:45

它对我来说按原样(CF9)工作,但由于您使用的是 CF8,请尝试添加 cfmail 类型。

<CFMAIL 
 TO="[email protected]"
 FROM="[email protected]"
 SUBJECT="?"
 type="html">
    <cfoutput>
       #Form.SSN# 
    </cfoutput>
</CFMAIL>

it works for me as is(CF9), but since your are on CF8 try adding the cfmail type.

<CFMAIL 
 TO="[email protected]"
 FROM="[email protected]"
 SUBJECT="?"
 type="html">
    <cfoutput>
       #Form.SSN# 
    </cfoutput>
</CFMAIL>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文