我正在使用commonspot,而且我是新手。我编写了一个代码,用于使用 cfmail 将页面推荐给朋友。但它不起作用,你能告诉我我必须做什么吗?
我的refer.cfm 页面
<title>E-Mail this page to your friend</title>
<cfoutput>
<cfform method="post" name="Emailform" action="sendmail.cfm">
<table border="0" cellspacing="0" cellpadding="4" width="90%" id="ContactMe">
<tr>
<td width="30%"><div align="right">Your Name:</div></td>
<td width="70%"><input type="text" name="name" size="30" /></td>
<tr>
<td><div align="right">Friend Email:</div></td>
<td><input type="text" name="email" size="30" /></td>
<tr>
<td> </td>
<td>
<input type="submit" id="submit" name="submit" value="Submit" />
<input type="reset" name="reset" value="Reset" />
</td>
</table></cfform></cfoutput>
我的 sendmail.cfm 文件:
<cfoutput>
<cfmail to="#email#"
from="do-not-reply@balah balah.com"
subject="#form.name# has referred you a page"
type="html">
Dear #form.name#
blah blah
</cfmail>
<p>Your E-Mail has been sent.</p>
</cfoutput>
我做错什么了吗?还是我错过了什么?
谢谢你