EmailYak.cfc - A ColdFusion Wrapper For The Email Yak API

Posted December 14, 2011 at 2:02 PM by Ben Nadel

Tags: ColdFusion

Last week, I started looking at the Email Yak API for creating bidirectional email communication between your web application and your users. In such a workflow, your users communicate with Email Yak using their native email client (GMail, Hotmail, Apple Mail, Yahoo! Mail, Outlook, etc.); your web application communicates with Email Yak using a JSON (JavaScript Object Notation) API and HTTP callbacks (for push notification). The service is really easy to use and provides powerful features like email parsing and unlimited hosting of file attachements. To make it even easier to use, I tried to encapsulate the HTTP interactions in a simple ColdFusion component wrapper - EmailYak.cfc.


 
 
 

 
  
 
 
 

View the EmailYak.cfc project on my GitHub account.

The EmailYak.cfc project currently comes with a demonstration of the following features:

  • Register Domain
  • Register Email Address
  • Send Email
  • Send Email with Attachments
  • Get All Email
  • Get New Email
  • Get Email
  • Get Email List
  • Delete Email
  • Trigger Callback

The last feature, Trigger Callback, sends an email to the demo account (itself) in order to simulate a new email. Email Yak then parses the new email and pushes a notification out to the callback URL defined in the domain configuration.

Here's an example of one of the demo files that is making use of the EmailYak.cfc ColdFusion component. This sends an email with Base64-encoded attachments:

  • <!--- Create an instance of the Email Yak wrapper. --->
  • <cfset emailYak = createObject( "component", "com.emailyak.EmailYak" )
  • .init( application.apiKey )
  • />
  •  
  •  
  • <!---
  • When sending attachments, they need to be encoded as Base64
  • strings. Therefore, when we read in the binary, we simply have
  • to encode them.
  • --->
  • <cfset attachments = [
  • {
  • filename = "alisha_morrow.jpg",
  • content = toBase64( fileReadBinary( expandPath( "./attachments/alisha_morrow.jpg" ) ) )
  • },
  • {
  • filename = "jen_rish.jpg",
  • content = toBase64( fileReadBinary( expandPath( "./attachments/jen_rish.jpg" ) ) )
  • }
  • ] />
  •  
  •  
  • <!--- Send an email with attachments. --->
  • <cfset response = emailYak.sendEmail(
  • fromAddress = "ben@emailyakcfc.simpleyak.com",
  • fromName = "Ben Nadel",
  • toAddress = "ben@bennadel.com",
  • subject = "This is a test from EmailYak.cfc",
  • htmlBody = "Email Yak, it really whips the llama's ass.",
  • textBody = "Email Yak, it really whips the llama's ass.",
  • attachments = attachments
  • ) />
  •  
  •  
  • <!--- Output the response. --->
  • <cfdump
  • var="#response#"
  • label="Send Email Response"
  • />

As you can see, the complexities of the HTTP request and the resource definition and the case-sensitivity has been hidden behind a simple sendEmail() method call.

I haven't started using this kind of workflow in production yet; but, I am itching for a chance to incorporate it. I love the idea of creating seamless interactions with my web application users in a way that removes as much friction as possible.




Reader Comments

Dec 14, 2011 at 2:47 PM // reply »
25 Comments

Nice. I'm going to try this out and see how it stacks up with mailgun and sendgrid. Thanks for the effort.

Have you been using GitHub all this time without telling me?


Dec 14, 2011 at 2:53 PM // reply »
10,743 Comments

@Aaron,

Ha ha, I've only starting using GitHub a bit. I really want to get into it a lot more. I still have a hand-written Git cheat-sheet next to my mouse pad so I can remember what some of the commands are. More so, however, I just like the idea of GitHub as a way to keep my code backed-up and also a place to keep open issues and what not.... you know, all the stuff that I'm probably *supposed* to be doing :D

Let me know what you think of Email Yak - it's the first thing I've tried (as you know). I'd be interested to hear how it compares to other things.


Dec 14, 2011 at 3:01 PM // reply »
25 Comments

I wonder if we should do a Git/GitHub deep dive one day. I'm in the same boat with sort of understanding it but it's still kind of an unknown.

Especially in the CF community where SVN is still tops, I'm guessing.

I've hijacked this thread enough. We can take it offline.


Dec 14, 2011 at 3:06 PM // reply »
10,743 Comments

@Aaron,

That would be awesome. I know only vaguely about the kinds of things that it can do.


Dec 14, 2011 at 3:58 PM // reply »
347 Comments

is GitHub some sort of versioning software or something?


Dec 14, 2011 at 4:41 PM // reply »
10,743 Comments

@Anna,

Yeah, it's live SVN, only different.


Dec 15, 2011 at 10:21 AM // reply »
347 Comments

Thanks, @Ben, it sounds like there are some differences, such as it has a way of executing scripts or something like that...and/or some sort of a shell, and some extra built-in functionality?


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
May 21, 2012 at 1:58 AM
Updated: Converting A ColdFusion Query To CSV Using QueryToCSV()
Hi Ben, why do you need to have so many double quotes when adding the field and field name to the row data? ----------------------------------------- <cfset LOCAL.RowData[ LOCAL.ColumnIndex ] = ... read »
AXL
May 21, 2012 at 1:24 AM
URL Rewriting And ColdFusion's WriteToBrowser Image Functionality (CFFileServlet)
@Mounir, Open your lower case URL Rewrite rule and add the following condition. Condition input: {REQUEST_URI} Check if input string: Does Not Match the Pattern Pattern: ^/CFFileServlet/_cf_ca ... read »
May 20, 2012 at 4:28 AM
Understanding The Complex And Circular Relationships Between Objects In JavaScript
@Will Vaughn I tried your javascript example but got this error:- foo.print is not a function ... read »
May 19, 2012 at 5:37 AM
A Graphical Explanation Of Javascript Closures In A jQuery Context
Thanks for this article, but I fear you missed an important point. If variables in the outer context change, these changes affect the inner anonymous functions as well. That means: if you change the ... read »
May 18, 2012 at 3:39 PM
Parsing CSV Data With An Input Stream And A Finite State Machine
Can you use file upload button with this? and read live? or does the file have to already be on the server saved? ... read »
May 18, 2012 at 1:06 AM
VIRGO (Aug. 23-Sept. 22): Dead On The Money!
A friend of mine and I were arguing about astrology and she told me that he believes in astrology. She hasn't provided me with any evidence that the belief makes any sense to me. She she been telling ... read »
May 17, 2012 at 11:32 PM
Using ColdFusion to Handle 404 Errors (Page Not Found) On Development Server
Very easy the configuration. I read a lot pages and I can't find the solution. I open the administrator and change this Administrator/server settings/Error Handlers/Missing Template Handler and p ... read »
May 17, 2012 at 3:13 PM
LOCAL Variables Scope Conflicts With ColdFusion Query of Queries
I never cease to be amazed that almost EVERY random CF issue I come across lands me on your site. Thank you for documenting your findings for the world. ... read »