Why is ColdFusion 9 moving email to Undelivr folder?
Hi all,
I have a user signup page where I use a <cfmail> like this on the action page:
<cfmail to="#FORM.email#" from="#strEmailFrom#" type="html" subject="Your #strSiteName# details">
<p>A forum user has been created with this email address on the #strSiteName# website. </p>
<p>The login details are as follows:</p>
<ul>
<li>Username: #FORM.username#</li>
<li>Password: #strThePass#</li>
</ul>
<p>You can use these dteails to log into the site, edit your profile and participate in discussions. </p>
</cfmail>
The page is running as it should but for some reason, ColdFusion is moving the email to /opt/coldfusion9/Mail/Undelivr and not sending it. The very strange thing is that it previously worked when I was testing it, but I'd forgotten to put the hashes around #strSiteName# in the subject, so it was sending out emails with the title "Your strSiteName details". I added in the hashes and now this is happening. It seems impossible that could be the cause, but I don't think I've changed anything else.
Thanks to anyone who can help.
T
