Using A Name Suffix In ColdFusion's CFMail Tag

Posted May 8, 2007 at 9:08 AM by Ben Nadel

Tags: ColdFusion

Usually, when sending an email using ColdFusion's CFMail tag, I use very simple email addresses like this:

  • <cfmail
  • to="ben@xxxxxxxxx.com"
  • from="libby@xxxxxxxxx.com"
  • subject="Thanks for last night!">
  •  
  • Thanks for last night. I had a great time.
  • Let's do that again soon.
  •  
  • </cfmail>

But, sometimes, when I want to up the level of professionalism, I will add the sender and recipient names to the email addresses:

  • <cfmail
  • to="Ben <ben@xxxxxxxxx.com>"
  • from="Libby <libby@xxxxxxxxx.com>"
  • subject="Thanks for last night!">
  •  
  • Thanks for last night. I had a great time.
  • Let's do that again soon.
  •  
  • </cfmail>

Doing this will use the first value "Ben" as the name to display and will use the value in between the "<" and ">" as the user's email address. But what happens if that name contains a suffix like "Jr" or "Sr"? When I first came up against this, I tried to do what I had done before:

  • <cfmail
  • to="John Noble, Jr. <john.jr@xxxxxxxxx.com>"
  • from="John Noble, Sr. <john.sr@xxxxxxxxx.com>"
  • subject="Son, I found a girl for you"
  • type="HTML">
  •  
  • <p>
  • Dear Son,
  • </p>
  •  
  • <p>
  • This is a girl from your mother's drawing class. She
  • looks like a ton of fun. I really think you should
  • consider meeting her for drinks. Here's a URL:
  • http://flickr.com/photos/keppyslinger/477844455/
  • </p>
  •  
  • </cfmail>

In this case, John Noble, Sr. is sending an email to his son, John Noble, Jr.. However, when I try to run the code above, I get the following ColdFusion error:

Attribute validation error for tag CFMAIL. The value of the attribute to, which is currently "John Noble, Jr. <john.jr@xxxxxxxxx.com>", is invalid.

The problem with this is that you can use ColdFusion's CFMail tag to send to multiple recipients by using a comma-delimited list of email addresses in the TO attribute:

  • <cfmail
  • to="dude@xxxx.com,chick@xxxxx.com,dog@xxxxxx.com"
  • from="ben@xxxxxx.com"
  • subject="To all of you!">
  •  
  • Hey guys, you all rock!
  •  
  • </cfmail>

Well, that is to say, that is not a problem. This is, in fact, a highyl beneficial feature of the ColdFusion language. But, my problem in this case is that the comma in the suffix name is confusing ColdFusion into thinking that there are multiple TO addresses. The trick to fixing this, as I just discovered, is to wrap the name of the sender or recipient in quotes so that ColdFusion knows to treat it as a whole value. This will, for lack of a better term, escape the comma in the CFMail attributes:

  • <cfmail
  • to="""John Noble, Jr."" <john.jr@xxxxxxxxx.com>"
  • from="""John Noble, Sr."" <john.sr@xxxxxxxxx.com>"
  • subject="Son, I found a girl for you"
  • type="HTML">
  •  
  • <p>
  • Dear Son,
  • </p>
  •  
  • <p>
  • This is a girl from your mother's drawing class. She
  • looks like a ton of fun. I really think you should
  • consider meeting her for drinks. Here's a URL:
  • http://flickr.com/photos/keppyslinger/477844455/
  • </p>
  •  
  • </cfmail>

Notice that the names are wrapped in double-double quotes. Remember that in ColdFusion, in order to escape double quotes within a double-quote-quoted string value, you have to use two quotes in a row.

As it turns out though, ColdFusion provides an even easier way to handle this situation. If you don't want to use the quote escaping, you can swap up the order of the name and email address and place the display name within parenthesis:

  • <cfmail
  • to="john.jr@xxxxxxxxx.com (John Noble, Jr.)"
  • from="john.sr@xxxxxxxxx.com (John Noble, Sr.)"
  • subject="Son, I found a girl for you"
  • type="HTML">
  •  
  • <p>
  • Dear Son,
  • </p>
  •  
  • <p>
  • This is a girl from your mother's drawing class. She
  • looks like a ton of fun. I really think you should
  • consider meeting her for drinks. Here's a URL:
  • http://flickr.com/photos/keppyslinger/477844455/
  • </p>
  •  
  • </cfmail>

This will accomplish the same exact thing with slightly more readable code. I am not sure if one offers advantages over the other outside of the need to escape the comma. So, that's how you escape commas within the user name of the ColdFusion CFMail tag.



Reader Comments

May 8, 2007 at 9:40 AM // reply »
78 Comments

I never knew Jurassic Park was a real place! =)


May 8, 2007 at 9:46 AM // reply »
10,640 Comments

Just don't be fooled. That was a professional dinosaur rider on a closed road. Do not try that at home.


Dec 28, 2007 at 1:44 PM // reply »
2 Comments

Thanks for the usefully Examples.


Feb 18, 2008 at 9:59 AM // reply »
2 Comments

Thanks Ben,

I experimented a while back and gave up. Nice to know the proper way to handle it. I wonder why this is not documented by Adobe... or, maybe it is and I missed it.

Anyway, thanks for the tip!


Sep 9, 2009 at 5:58 PM // reply »
1 Comments

I tried all this and none of it works. Still get the error.


Sep 12, 2009 at 10:23 PM // reply »
10,640 Comments

@Dusty,

What error is it giving you?


Sep 17, 2009 at 8:45 AM // reply »
2 Comments

Thank you thank you thank you! This is EXACTLY what I've been looking for!


Sep 17, 2009 at 10:48 AM // reply »
2 Comments

It's clear that she was riding the dinosaur under controlled conditions, thanks for the warning Ben :)

@Dusty, I got it up and running now. Post the error please?


Oct 20, 2009 at 8:20 PM // reply »
1 Comments

The only one of these that worked, using CFMAIL and SmarterMail, was the double-double quote approach. Thanks very much for this helpful page. Bob mack


Oct 31, 2009 at 4:17 PM // reply »
10,640 Comments

@Robert,

Yeah, that's the one I've found to be the most universal.


Nov 2, 2009 at 4:46 PM // reply »
6 Comments

I noticed this only became an issue after I upgraded from MX7 to CF9. I had a cfmail tag that in the from address had "Companyname, Inc <test@email.com> and this worked perfectly in MX7.

After upgraded to 9, all my mail started going in the undeliverable folder. Took a while to figure it out but thanks for pointing this out Ben.


Nov 3, 2009 at 12:29 PM // reply »
10,640 Comments

@Rob,

That's good to know - I haven't upgraded to CF9 yet, but I'll keep my eyes open.


Jan 20, 2010 at 2:40 PM // reply »
7 Comments

I just ran into the comma problem. Thanks for this post, it solved my problem.


Jan 20, 2010 at 10:51 PM // reply »
10,640 Comments

@Don,

Glad to be here to help.


Mar 18, 2010 at 6:59 AM // reply »
1 Comments

Thanks Ben. This is really a very helpful article. Keep posting... Congrats.


May 11, 2010 at 10:45 PM // reply »
5 Comments

The question is now how do you get CSS in your cfmail body. Yikes!


May 11, 2010 at 10:57 PM // reply »
6 Comments

@ Omar.. If you're including a stylesheet, be sure to put the full path since it is an email and would need to be downloaded over the internet...

For example...

<link rel="stylesheet" href="http://www.yourdomain.com/css/styles.css" type="text/css" />

hope that helps.


May 11, 2010 at 11:54 PM // reply »
5 Comments

@Rob G., im not sure why this doesn't work for me. I'll try it again.


May 11, 2010 at 11:59 PM // reply »
6 Comments

Be sure your email program is not set to block html. Also some webmail doesn't download html accurately either.


May 13, 2010 at 10:31 PM // reply »
10,640 Comments

@Omar,

I find CSS in email to be hit or miss. I tend to use inline CSS to get the most stable results. But, I am far from the best guy to talk to about this; I don't send out too many emails.


May 14, 2010 at 12:25 AM // reply »
5 Comments

@Ben Nadel, I've seem to have got it working with this, noting the style tag wrapped around the link

<style type="text/css">

<link rel="stylesheet" href="http://www.domain.com/css/mail.css" type="text/css" />

</style>


May 16, 2010 at 9:43 PM // reply »
10,640 Comments

@Omar,

Interesting. I am not sure why that would work. It must escape the Style tags (allowing the Link tag to execute).


Nov 8, 2010 at 10:17 AM // reply »
1 Comments

I always know that when I google any CF problem and end up on this guy's website, I've found the solution. Thanks Ben for all your support. This, as usual, was exactly what I was looking for.


Nov 10, 2010 at 10:10 AM // reply »
10,640 Comments

@Matt,

Very awesome! Glad I could be here to help :)


Jun 30, 2011 at 6:01 AM // reply »
1 Comments

Hi Ben
I was wondering if you knew how to display special chars in the cfmail subjuct line.

I want & not to be &amp! ?


Jul 12, 2011 at 4:55 PM // reply »
9 Comments

Saved my neck again, Ben! :) Great info!



Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 12, 2012 at 3:37 AM
Learning ColdFusion 8: CFImage Part III - Watermarks And Transparency
Hi Ben, Just to ask currently it is placed bottom right corner, if i need to replace the same rendered image on the bottom left side or in the bottom center, how that can be calculated. bottom ce ... read »
Feb 11, 2012 at 9:29 PM
Use jQuery's SlideDown() With Fixed-Width Elements To Prevent Jumping
I can't say how glad I am that I found your post. Thank you very much. ... read »
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »