Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 668807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:04:54+00:00 2026-05-14T00:04:54+00:00

I’ve used ColdFusion for sending text emails for years. I’m now interested in learning

  • 0

I’ve used ColdFusion for sending text emails for years. I’m now interested in learning how to send those pretty emails you see from companies like Mint.

Anyone know of a good ColdFusion tutorial to teach me how to make this work and not get hit by bugs or spam filters?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T00:04:54+00:00Added an answer on May 14, 2026 at 12:04 am

    As Ray said, ColdFusion supports HTML email, which is how you make an email “pretty”. A quick down and dirty sample looks like this:

    <cfmail from="bob@bob.com" to="someguy@email.com" subject="Check this out!" type="HTML">
        <HTML>
           <head><title>My Email</title>
    
           </head>
           <body>
               <!--- Style Tag in the Body, not Head, for Email --->
               <style type="text/css">
                   body { font-size: 14px; }
               </style>
               This is the text of my email.
           </body>
        </HTML>
    </cfmail>
    

    That’s it, you’ve just sent an email. Notice how there is nothing preventing you from sticking in any old from email address you like? That leads me to my next point, in which you’re wondering how to avoid getting hit by Spam filters:

    The short answer is: You can’t.

    Oh sure, you can do intelligent things, like not including the word “VIAGRA” in your email (unless you’re trying to send out penile enlargement emails and want to know how to get past spam filters, in which case I’m disinclined to help), but let’s assume you just want to avoid obvious pitfalls.

    I can think of two things that might help:

    • Send out email from a domain registered to the from email address. I didn’t make the rules, but this one can be a pain. Ie., If you try to send out proxy emails for myorg.com, and your server does not host myorg.com, some spam filters are going to block it. What is usually done is to apply some branding to the from email, like this:

      <cfmail from="MyOrg.Com <DONOTREPLY@registeredsite.com>" replyto="bob@myorg.com" to="someguy@email.com" subject="Test" type="HTML">
      </cfmail>

    In this case the email is sent from your server at registeredsite.com, with a replyto being the proxy email address. Spam filters will probably be okay with this, since the from email address of *@registeredsite.com resolves to your server. Try to send out with bob@myorg.com in the from, and you’ll definitely run into some places that will block you.

    • Use a physical server, not a cloud site. I’m running into this very issue right now, but if you don’t use a physical server that is located at a dedicated IP to send out your email, and if this server is not the originator of the email, some places are going to block it. This means no EC2 or Rackspace cloud site–sorry, some sysadmins are inclined to put down the banhammer on anything that originates from one of these providers, seeing as it is so easy to churn up your own little spam factory using EC2 or Rackspace for very little cost.

    Even if you take these precautions, however, you’ll run into a situation where someone gets a hold of your domain name and drags it through the mud. They’ll send out thousands of emails to the internet in your name–or rather, in your domain’s name–and because of the insecurity of email, your domain will get added to someone’s blacklist after a thousand occurrences of hotlove4u@registeredsite.com hit the sysadmin’s inbox. There’s nothing you can do about it, either.

    Or you can decide to run a cloud app and use a remote mail server. But some jokers will get one look at the originator being EC2 and will say, “Nope, sorry. Denied.” They don’t care about the legitimacy of your organization, only the origin of the email.

    Email is an antiquated technology that has been rushed into mass usage before we really were able to think of a better protocol. As a protocol, it’s terrible….and yet we’re stuck with it, for backwards compatibility reasons. You cannot possibly avoid the spam filter. 95% of the email on the internet is junk mail, and never even reaches the intended recipient. Just absorb the enormity of that statistic for a moment, and pull your ideas back to reality. Many of the spam-prevention techniques being used today are unnecessarily aggressive, and create a great many ‘false positives’. You can shoot for, say 80% of your email being sent, but what it really comes down to is this: As soon as the email has been fired off, it’s completely out of your control. You can only take responsibility for so much.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I have a text area in my form which accepts all possible characters from
I have a bunch of posts stored in text files formatted in yaml/textile (from
I used javascript for loading a picture on my website depending on which small
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
this is what i have right now Drawing an RSS feed into the php,
I am currently running into a problem where an element is coming back from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.