Stop cfmail messages being flagged as spam
This is being an issue for me for a while: it seems like all cfmail emails are being caught as spam. Perhaps not by bldns, but outlook for example.
I found this post a few months ago that I think I should share.
In summary, do the following:
1) Change the cfmail from atrribute to '"#mailoutSender#" <#mailoutSenderEmail#>'
Apparently this makes the sender look more like a real account.
2) Add headers that cfmail doesn't include by default:
• <cfmailparam name="Message-Id" value="<#createUUID()#@yourdomain.com>">
• <cfmailparam name="Reply-To" value="#get_mailout.mailoutSenderEmail#">
• <cfmailparam name="MIME-Version" value="1.0">
For more info, check out the original post.
http://www.robgonda.com/blog/trackback.cfm?4CE8ABF9-3048-7431-E4179367B9F48109
<CFMAIL
from="user@mydomain.com"
to="user@hotmail.com"
server="smtpout.secureserver.net"
username="godaddyHosedEmailAddress"
password="password"
type="html"
subject="User Registered"
port="80">
<cfmailparam name="Message-Id" value="<#createUUID()#@mydomain.com>">
<cfmailparam name="Reply-To" value="user@mydomain.com">
<cfmailparam name="MIME-Version" value="1.0">
<H1> Test Email</H1>
</CFMAIL>