Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cfmail and spam filters

Status
Not open for further replies.

johk02

Programmer
Aug 20, 2003
169
AU
I am not to sure how spam filters work so this may be a "silly" question:)
If someone register or sign up for newsletter on the website we have emails being sent out to confirm that action. I am keen to add our logo to the emails being sent but am a bit concerned that it will increase the likely hood of the email being regarding as spam. I think I read somewhere that emails sent from websites (it being CF, ASP PHP etc) are more prone to be regarded as spam by the email client.

Would appreciate if someone could shed some light on this :)
Cheers
Jonas

 
Ironically I am looking to solve a similar problem.

Not sure if it will help but here are some suggestion I have found.


<CFMAIL TO = "#form.Email#"

FROM = "account@yourserver.com"
SUBJECT=""
username=""
password=""
server="mail.datalabsolutions.com"
TYPE="HTML">


<cfmailparam name="X-Priority" value="3"/>
<cfmailparam name="X-MSMail-Priority" value="High"/>
<cfmailparam name="X-Mailer" value="yourserver.com"/>
<cfmailparam name="Message-id" value="yourserver.com"/>
<cfmailparam name="Reply-To" value="name@yourserver.com"/>


Message Here
</CFMAIL>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top