Mail gem version 2 released

Sat Jan 23 17:05:00 -0800 2010

The past month has seen a flurry in activity on the Mail gem but I just pushed 2.0.3 to GemCutter, it is quite a release!

If you haven’t heard of mail, you can get some background here, here, here and here

Mail is a very Ruby way to handle emails.

Version 2.0.3 is the first gem release I have in the last couple of weeks, this is because I went through and (in good BDD style) refactored major parts of the Mail gem so it handles better.

Some of the major things were:

SMTP Delivery Agent revamped

I went through the SMTP delivery agent and cleaned it up, also adding examples for how you use Mail with GMail and MobileMe so there is no more guess work here.

Delivery agents are now instance based

This means that each mail object that you instantiate can have its own delivery method. Why is this important?

Well, say you are writing a web based email client for multiple users, but each user has their own SMTP hosts, when you make a mail object for that user, you could assign the delivery method for that user to that mail object, then delivery is just calling .deliver! on the mail object, and away it goes.

There is still default class wide settings for all the major delivery agents (SMTP, Sendmail and File) however, you can now over ride these.

mail1 = Mail.new
mail1.delivery_method #=> #<Mail::SMTP:0x101381c18 @setting
mail2 = Mail.new
mail2.delivery_method :sendmail
mail2.delivery_method #=> #<Mail::Sendmail:0x101381c18 @setting
mail1.delivery_method #=> #<Mail::SMTP:0x101381c18 @setting

Attachments are now just parts

Before, an Attachment had its own object type in Mail. This was nice and all, but was just added cruft that got in there during the BDD cycle. I ripped out the entire attachment class, and an attachment is now just a plain old Mail::Part. This makes the code simpler, which is good for everyone.

Mail also now has a very cool attachments API:

mail = Mail.new
mail.attachments #=> []
mail.attachments['filename.jpg'] = File.read('filename.jpg')
mail.attachments['file.pdf'] = {:content_type => 'application/x-pdf',
                                :content => File.read('file')
mail.attachments.length #=> 2
mail.attachments[0].filename #=> 'filename.jpg'
mail.attachments['filename.jpg'] #=> <# Mail::Part, filename = 'filename.jpg' ...>

Yes, that is an ArrayHashThingy™ class, and, it rocks :) It is actually an AttachmentsList object that inherits from Array and implements a custom [] class.

Thanks to David and Yehuda who were brainstorming on the new ActionMailer 3.0 API with me, which I used for inspiration for this implementation. (more on the ActionMailer 3.0 API that I am pair programming with José later :)

Mail returns default values for fields, that can be modified

Mail returns an array of address specs when you call mail.to and would re-initialize that array with new values when you called mail.to=.

However, this array object was just a result of a method, it was not a representation of the addresses within the address field, so then doing mail.to << value would seem to work (no error) but the address would get lost, for example:

# Old (unintuitive method)
mail = Mail.new("To: mikel@test.lindsaar.net")
mail.to #=> ['mikel@test.lindsaar.net']
mail.to << 'ada@test.lindsaar.net'
mail.to #=> ['mikel@test.lindsaar.net']

This now works on all Address fields that can take more than one address, so

# New (intuitive) method
mail = Mail.new("To: mikel@test.lindsaar.net")
mail.to #=> ['mikel@test.lindsaar.net']
mail.to << 'ada@test.lindsaar.net'
mail.to #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net']

Thanks to Sam for suggesting this feature.

Access returned to the Address objects

When you call mail.to you get a list of address spec strings (‘mikel@test.lindsaar.net’ for example), but it will not give you the display name, or formatted address etc.

To handle this, you can now call mail[:to] to get the actual ToField object, and then you can call #display_names, #formatted, and #addrs, the last of which will give you the actual Address objects in an array (the original behaviour of Mail), like so:

mail = Mail.new("To: Mikel Lindsaar <mikel@test.lindsaar.net>")
mail.to #=> ['mikel@test.lindsaar.net']
to = mail[:to]  #=> #<Mail::Field:0x10137c718...
to.addrs #=> [#<Mail::Address:2165620900 Address: |mikel@test.lindsaar.net| >]
to.addrs.each do |addr|
  puts "Formatted: #{addr.format}"
  puts "Display:   #{addr.display_name}"
  puts "Address:   #{addr.address}"
end
# Produces:
Formatted: Mikel Lindsaar <mikel@test.lindsaar.net>
Display:   Mikel Lindsaar
Address:   mikel@test.lindsaar.net
=> [#<Mail::Address:2165518560 Address: |Mikel Lindsaar <mikel@test.lindsaar.net>| >]

Thanks to Karl for suggesting this would be handy :)

More methods added to address fields

You can also access an array of the formatted, display_names or addresses directly from address fields:

mail = Mail.new("To: Mikel Lindsaar <mikel@test.lindsaar.net>")
mail[:to].addresses   
#=> ["mikel@test.lindsaar.net"]
mail[:to].formatted
#=> ["Mikel Lindsaar <mikel@test.lindsaar.net>"]
mail[:to].display_names
#=> ["Mikel Lindsaar"]

Remaining Stuff

There are a lot of other small bug fixes, parts now get sorted recursively on encode, body objects will accept an array of strings and call join on them, and many other small things that are in the commit and change logs. Check it out.

As always, tickets (and patches) are always welcome, I use GitHub’s Tracker for this. Or you can talk to us on the Mail Google Group

Happy Mailing!

blogLater

Mikel

  1. Androme Says:

    This is a very nice post for sure. legal studies school | Natural sciences degree | fire science school | Performing Arts degree | political science school

  2. jack Says:

    I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.drivers license

  3. jack Says:

    I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.drivers license

  4. restaurants for sale Says:

    I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.

  5. Albart Says:

    Really impressed! Everything is very open and very clear explanation of issues. It contains truly information. Your website is very useful.
    telemarketing lists

  6. Mike Mondragon Says:

    Thanks Mikel, MMS2R http://rubygems.org/gems/mms2r version 3.0.0 is dependent upon the Mail gem now rather than TMail

  7. Utility Warehouse Says:

    Great blog. All posts have something to learn. Your work is very good and i appreciate you and hopping for some more informative posts.keep writing…

  8. Utility Warehouse Says:

    Great blog. All posts have something to learn. Your work is very good and i appreciate you and hopping for some more informative posts.keep writing…

  9. jessa Says:

    yeah that’s right then I guess it’s one of the best then and we have to do the same thing. Thanks much for that.
    childrens clothing

  10. jessa Says:

    yeah that’s right then I guess it’s one of the best then and we have to do the same thing. Thanks much for that.
    childrens clothing

  11. nfrdwe Says:

    Have I missed something, and is it possible to only delete some emails from the server – say only those that have been there longer than X days, or perhaps the oldest N emails. I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.

  12. Jackson Cruz Says:

    Your Post has a lot of great information and it has really helped me alot. Do you have any other posts about this topic? Thanks for sharing with us. florist lansing michigan

  13. Robin Says:

    QUESTION about receiving emails

    Hi, most of the discussion here (and almost all of the stuff about ActionMailer) deals with sending emails. However mail does seem to be able to receive all or some emails from a Pop3 server. But it only seems to allow deleting all the emails on the Pop3 server. Have I missed something, and is it possible to only delete some emails from the server – say only those that have been there longer than X days, or perhaps the oldest N emails. I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.

  14. Jackson Cruz Says:

    Your Post has a lot of great information and it has really helped me alot. Do you have any other posts about this topic? Thanks for sharing with us.
    florist lansing michigan

  15. Frank Says:

    I favor this posting. This is named a superb article. We are new here. I like your internet site too. This can be pretty awesome. i found some handy info right here. anyways thanks for sharing with us. I i’m looking foreword your following post. Cheers. Im just gonna shear this web site all this friends and i hope they live this blog. professional thesis writers

  16. Stefano Bernardi Says:

    I find it very hard to work with attachments now that they are just parts..

  17. Frank Says:

    I favor this posting. This is named a superb article. We are new here. I like your internet site too. This can be pretty awesome. i found some handy info right here. anyways thanks for sharing with us. I i’m looking foreword your following post. Cheers. Im just gonna shear this web site all this friends and i hope they live this blog. professional thesis writers

  18. Frank Says:

    I favor this posting. This is named a superb article. We are new here. I like your internet site too. This can be pretty awesome. i found some handy info right here. anyways thanks for sharing with us. I i’m looking foreword your following post. Cheers. Im just gonna shear this web site all this friends and i hope they live this blog. professional thesis writers

  19. erine Says:

    I have several issues encountered during the integration of the Mail returns field script… I don’t know how to get it work.
    ipad keyboard case

  20. pengar pengar pengar Says:

    I am very enjoyed for this side. Its a nice topic. It help me very much to solve some problems.

  21. pengar pengar pengar Says:

    Usually I dont make an effort with a comment nevertheless for your effort and hard work you have earned.

  22. clarinet maintenance Says:

    the emails on the Pop3 server. Have I missed something, and is it possible

  23. biomedical engineering salary Says:

    Great work learned a trick or two, thanks

  24. biomedical engineering salary Says:

    Great work learned a trick or two, thanks

  25. Buy Stromectal Says:

    Please write more articles like this one, I learned a lot!

  26. Buy Stromectal Says:

    Please write more articles like this one, I learned a lot!

  27. Digital Agency Orlando Says:

    I’ve never seen Steve P. Roma at one of his gyms and I’ve been working out there – on and off – for years. Dig deeper to the about WOW page. Here’s an excerpt I’d like to highlight.

  28. Pakaya Says:

    Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. however only some of the points were actually treated actually good, I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this free itunes download

  29. Pakaya Says:

    Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. however only some of the points were actually treated actually good, I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this free itunes download

  30. Mike Says:

    The simplicity of this blog is the main quality of this blog which i like and appreciate. music production

  31. Mike Says:

    The simplicity of this blog is the main quality of this blog which i like and appreciate. music production

  32. how fast to lose weight Says:

    I, for one, appreciate it.

  33. conan Says:

    Believe that everything happens for a reason.
    <a href=“=”http://www.freestylecustoms.net/" rel="folllow">brazilian jiu jitsu gi

  34. how fast to lose weight Says:

    I, for one, appreciate it.

  35. how fast to lose weight Says:

    I, for one, appreciate it.

  36. conan Says:

    Believe that everything happens for a reason.
    <a href=“=”http://www.freestylecustoms.net/" rel="folllow">brazilian jiu jitsu gi

  37. Dry Fruits Says:

    Have I missed something, and is it possible to only delete some emails from the server – say only those that have been there longer than X days, or perhaps the oldest N emails. I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.

  38. Atik Says:

    Thanks for this share mate. I have looking for this information for quite some time now and I am glad to come across your post. essays term papers

  39. Grand Rapids SEO Says:

    Yeah, this is my issue. I can’t delete select emails from the server. It just wipes out the entire database. Any help on this?

  40. Gifts For Men Says:

    That’s also my problem and I’m really looking forward to read your response in this same page..can you help me for this? Anyway, you have make a nice and informative blog!

  41. Photocopiers Says:

    To follow up on the up-date of this matter on your web-site and would wish to let you know simply how much I loved the time you took to publish this helpful post. Within the post, you really spoke regarding how to truly handle this thing with all ease. It would be my pleasure to get together some more tips from your web page and come as much as offer others what I have benefited from you. I appreciate your usual fantastic effort. Now you can search for some great Photocopiers easily!!!

  42. buy silver Says:

    Mikel, thanks for pushing 2.0.3 to GemCutter.

  43. Shohel Rana Says:

    I think it will work now

  44. Locksmith Torrance Says:

    Fantastic work ! Your web blog has presented me all the understanding I required .

  45. Christmas Gifts Says:

    I must appreciate you for the information you have shared.I find this information very useful and it has considerably saved my time.

  46. Gifts For Men Says:

    Found your weblog by accident for the second time these days so I considered I would have a nearer appear. I’ve just started producing my own blog site and modeling it right after what you have done. I hope mine is going to be as profitable as yours.

  47. Clark H. Kromer Says:

    Your blog is very impressive!!Nice post. This is the way I like to see informational content written. This post is different from what I read on most blog. And it has so many valuable things to learn. Thank you for your sharing!
    florist norfolk virginia

  48. Electronic Toys Says:

    It is great to read such thoughts. I have to agree to most of the mentioned minds and those are well investment in to future developments in this area. Even if it may have different effect scenarios, positive trend should be undoubted.

  49. Baju Wanita Says:

    Still leaerning Ruby on Rails and find its beauty :)
    Thinking of focusing more to Ruby than PHP.

  50. Gifts For Kids Says:

    Wonderful blog! I definitely love how it’s easy on my eyes and also the data are well written. I am wondering how I might be notified whenever a new post has been made.Thanks.

  51. rob Says:

    I had the same problem when I deleted e-mails from pop server it just wiped out the whole lot. I have been searching for a way to fix this but have been unable to find a solution anybody with the same problem as a solution I will be grateful to hear it as it is a very frustrating problem.

  52. Gifts For Women Says:

    Advantageously, the article is actually the best on this noteworthy topic. I fit in with your conclusions and will thirstily look forward to your coming updates. Just saying thanks will not just be sufficient, for the tremendous clarity in your writing. Gratifying work and much success in your site!

  53. Christmas Toys Says:

    I was very encouraged to find this site. The reason being that this is such an informative post. I wanted to thank for this informative analysis of the subject. I ate every bit of it and I submitted your site to some of the biggest social networks so others can find this blog.

  54. Pengar Says:

    This site is very interesting thanks for the information. Im looking for further articles

  55. Baju Wanita Says:

    I am quite excited with all the article content of your site. It would be my pleasure to gather some more strategies from your web-site and come up to offer people what I have benefited from you.
    Baju Wanita Import Korea

  56. Meilibahenling Says:

    This is the perfect blog for anyone who wants to know about this topic. You know so much its almost hard to argue with you (not that I really would want.HaHa). You definitely put a new spin on a subject thats been written about for years. Great stuff, just great!

  57. hvlp paint Says:

    I really enjoy reading your articles. thanks for sharing information …I found it quiet interesting, hopefully you hvlp gun

  58. weer vandaag Says:

    I enjoyed this blog at all specially its background is very charming and attractive for eyes,i liked it very much.

  59. ways to pregnant Says:

    I was waiting for this version, can i ask when will the new version will be released

  60. how to be a mom Says:

    The new added feature in this version will help us a lot

  61. bro spirit Says:

    Thanks for Nice blog…"great stories .. it will be helpful to all .. thanks so much God Bless"

  62. bro spirit Says:

    Thanks for Nice blog…"great stories .. it will be helpful to all .. thanks so much God Bless"

  63. webroot Says:

    i have read this and was very helpful information

  64. Makita Tool Parts Says:

    One more vote id here in your favor look at this "I do agree with all the ideas you have presented in your post. They’re very convincing and will definitely work. Still the posts are very short for starters. Could you please extend them a bit from next time? "

  65. Discount Power Tools Says:

    This is absolutely fantastic "It already has a history longer than 20 years, more and more people are collecting these shoes as a collection. "

  66. Mobil Bekas Semarang Says:

    Hi commenters and everybody else !!! The blog was absolutely fantastic! Lots of great information and inspiration, both of which we all need!Keep `em coming. you all do such a great job at such Concepts. can’t tell you how much I, for one appreciate all you do!

  67. key man insurance Says:

    This looks interesting. I have been looking for an option to handle mail via Ruby. Thanks

  68. Diet Plan Reviews Says:

    I’m not that much of a internet reader to be honest but your sites really nice, keep it up! I’ll go ahead and bookmark your website to come back down the road. Many thanks

  69. Mark Olsen Says:

    Emails nowadays are very important and helpful. It helps us send letters directly and saves our money. I personally uses emails a lot.

    Miami Roofer

  70. lyn cayce Says:

    Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. however only some of the points were actually treated actually good, I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this. best christmas gifts 2011

  71. lyn cayce Says:

    Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. however only some of the points were actually treated actually good, I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this. best christmas gifts 2011

  72. Peanut Machine Says:

    This was a fantastic post. Really loved reading your weblog post. The information was very informative and helpful.

  73. Peanut Machine Says:

    This was a fantastic post. Really loved reading your weblog post. The information was very informative and helpful.

  74. James Mason Says:

    This is a pretty in depth post about Mail Gem. I, for one, appreciate it.

    spy on my girlfriend’s phone

  75. Harga Samsung Galaxy Says:

    Thanks for the information. This is very useful to me. I waited for another article. Harga Samsung Galaxy Harga Nokia Asha 303 Berita Terkini

  76. fertibella success Says:

    The post is written in a very good manner and entails valuable information for me to work on. Thanks for sharing such remarkable ideas!

  77. erni Says:

    Thanks for your article, it’s very helpfull, just waiting for another tips…:)

    merry christmas buddy…:)

  78. dfh45fdd Says:

    Have I missed something, and is it possible to only delete some emails from the server – say only those that have been there longer than X days, or perhaps the oldest N emails. I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.ikpdjnvaj sg qqyjivwzl hg qtaowcahr

  79. mpie Says:

    I never found any interesting article like yours.jekardah

  80. Bible Study Lessons by T.O.D. Johnston Says:

    I was wondering when the SMTP Delivery agent revamped was going to be released. Bible Study Lessons by T.O.D. JohnstonNow it has been released my email experience has been without any problem.

  81. dramatic Says:

    then delivery is just calling .deliver! on the mail object, and away it goes.

  82. grand rapids djs Says:

    I always use SMTP Delivery Agent which is very useful and easy to implement especially when uploading materials for my website. grand rapids djs

  83. share accommodation Sydney Says:

    This is a wonderful site where we are getting more information. I have been talking with my friend about, he though it is really interesting as well. Keep up with your good work; I would come back to you.

  84. Sutton Locksmiths Says:

    Sutton Locksmiths – We are an emergency locksmith service that covers South London and the Surrey areas. Sutton Locksmiths

  85. Natural SEO Says:

    This is very useful things for me because i use smtp.
    thank you for sharing this.

  86. New Hampshire Wedding Venues Says:

    Image online on the net in excess of several time currently in addition to When i got to the site that write-up, still When i never ever located almost any useful document including your own property. It truly is rather value plenty of in my opinion. I believe, in the event many internet marketers in addition to blog writers manufactured beneficial information since you performed.

  87. vintage cameo lockets Says:

    I just started using the mail gem and it is truly a magnificent application

  88. Locksmiths Says:

    This really is a fantastic website, its really helped me a lot.

    Regards Locksmiths

  89. graphic design Says:

    The simplicity of this blog is the main quality of this blog which i like and appreciate

  90. causes of seizures Says:

    I recently found much useful information in your website especially this blog page. Among the lots of comments on your articles. Thanks for sharing.

  91. caydenmiller Says:

    Thank you very much for taking your time to create this very informative site.I have learned a lot from your site.
    price of gold 2011

  92. Cuba Explorer Tours Says:

    This mail update has a really cool interface and it makes the software more efficient.

  93. Tow Dolly Says:

    This is sensitive issue, everyone has diffirent opinion regarding this issue, but make a shot with this article, You explain it very well. Love it ! How can i contact you.. I need further discussion.

    Mike
    Tow Dolly

  94. shamelessboyz Says:

    Awesome, these look fantastic :) Very artistic. Have a great vacation :)

  95. Locksmith Basingstoke Says:

    This is an awesome site we are a local Locksmith Basingstoke we have been serving the local community with all there locksmith requirements.

  96. Custom t-shirts Says:

    This is really a fascinating blog, lots of stuff that I can get into. One thing I just want to say is that your design is so perfect!

  97. locksmith egham Says:

    Locksmith egham the local locksmiths in egham, call us today for a free quote.

  98. Storage World melbourne Says:

    I share many of you read the blog and I got to this conclusion on social service work you do through your blog

  99. safe storage melbourne Says:

    Wow what a blog is your blog, whatever the hymn should be,I did like all of your blog,

  100. SierraWhitaker Says:

    And in this span of time, we have understood that the most important part of this business is the client – we service what the client wants. We focus on innovation in our service offerings by investing in the hardware, software and network infrastructure so that our clients can tend to their online business and their customers without worrying about the complexities of the backbone of their online presence.

  101. Cheap Dedicated Servers Says:

    And in this span of time, we have understood that the most important part of this business is the client – we service what the client wants. We focus on innovation in our service offerings by investing in the hardware, software and network infrastructure so that our clients can tend to their online business and their customers without worrying about the complexities of the backbone of their online presence.

  102. Cheap Dedicated Servers Says:

    Yeah its very nice!

    Thanks for the article.

  103. learner permit test Says:

    Providing secure email is more important than ever, particularly securely removing them from the mail servers.

    People should not send credit card information in emails but they do and getting that stuff off the servers and erased is an important anti-hacking feature.

    Thanks for the article.

  104. Egham Locksmiths Says:

    This was an interesting article to read, thanks very much.

  105. diet meals to your door Says:

    Great information shared on the blog. diet meals to your door

  106. Business Directory Says:

    Thanks for the nice blog. It was very Useful for me. I’m happy I found this blog. Thank you for sharing with us, I always learn something new too from your post .

  107. Online Business Listings Says:

    I must say that overall I am really impressed with this blog. It is easy to see that you are passionate about your writing.

  108. Premium Directory Says:

    I i’m looking foreword your following post. Cheers. Im just gonna shear this web site all this friends and i hope they live this blog.

  109. Business Directory Says:

    This was a fantastic post. Really loved reading your weblog post. The information was very informative and helpful.

  110. Jedi Force Says:

    the article is so helpful and attractive. It is full of useful material
    and many information which can be easily understand

  111. onlineearnings Says:

    oh , really I am surprised by seeing your site information. It is a great
    article for me. Ya , I think it’s a great work………

  112. alisaalba Says:

    hey, this is a very amazing site for me and i become
    very helpful for me. its really a top class solution for us.
    a lot of informatic material are posted on this site……

  113. cluster headache treatment Says:

    Between me and my wife we’ve owned more MP3 players over the years than I can count, including Sansas, iRivers, iPods (classic & touch), the Ibiza Rhapsody, etc. But, the last few years I’ve settled down to one line of players. Why? Because I was happy to discover how well-designed and fun to use the underappreciated

  114. puska Says:

    This website is very exciting thanks for the details. Im looking for further articles

  115. portable table saw Says:

    This website is very exciting thanks for the details. Im looking for further articles

  116. freelance django developer Says:

    Im looking for further articles

  117. network marketing Says:

    Success is not impossible in Network Marketing. All making money takes is Leads, advice, tips and hard work! network marketing

  118. arginine Says:

    L-Arginine supplements help with better blood flow for an active lifestyle. Buy Arginine at discounted prices! arginine

  119. arginine Says:

    L-Arginine supplements help with better blood flow for an active lifestyle. Buy Arginine at discounted prices! arginine

  120. Gold ETFs Says:

    Success is not impossible in Network Marketing. All making money takes is Leads, advice, tips and hard work!

  121. payday one Says:

    I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this free

  122. this site Says:

    I wanted to thank for this informative analysis of the subject. I ate every bit of it and I submitted your site to some of the biggest social networks so others can find this blog.

  123. best cash loans Says:

    Thanks for this share mate. I have looking for this information for quite some time now and I am glad to come across your post.

  124. quick quid Says:

    This can be pretty awesome. i found some handy info right here. anyways thanks for sharing with us

  125. payday loans Says:

    I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this

  126. Business Directory Says:

    I like the security of keeping copies on the server for a while. Thunderbird and Outlook allow this. Thanks.

  127. 1800 Social Says:

    I feel strongly about it and love learning more on this topic. however only some of the points were actually treated actually good….

  128. Handyhomes Says:

    I wanted to thank for this informative analysis of the subject. I ate every bit of it

  129. Hotels for all Says:

    Wonderful blog! I definitely love how it’s easy on my eyes and also the data are well written. I am wondering how I might be notified whenever a new post has been made.Thanks.

  130. Web Design Leeds Says:

    I have looking for this information for quite some time now and I am glad to come across your post.

  131. Dominos Pizza Says:

    Fantastic work ! Your web blog has presented me all the understanding I required .

  132. cleopatra slots Says:

    I enjoyed this blog at all specially its background is very charming and attractive for eyes,i liked it very much.

  133. Beirut Dental Clinic Says:

    It was very well authored and easy to understand. Unlike additional blogs I have read which are really not good. I also found your posts very interesting. In fact after reading, I had to go show it to my friend and he enjoyed it as well!

  134. levitra canada Says:

    I have been seeking information on this topic for the past few hours and found your post to be well written

  135. HAJJ PACKAGES Says:

    Thanks for enhanced features, especially for “More methods added to address fields”, as previously it wasn’t that much user-friendly but now it works like a charm.

  136. lighting fixtures Says:

    I favor this posting. This is named a superb article. We are new here. I like your internet site too

  137. solarenergie gelsenkirchen Says:

    Unternehmenswebseite der GelsenPV GmbH – Ihr Systemhaus für Solarenergie.

  138. yasirra Says:

    Good article, thanks for pointing this out. Fortunately this topic is also presented in your blog, assuring a good coverage. Keep up the good work. options trading software

  139. Bournemouth Locksmiths Says:

    Thanks for the help, I am still having STMP problems. There is a conflict with the ports I believe. Any help?

  140. buy camel cigarettes Says:

    Wonderful blog! I definitely love how it’s easy on my eyes and also the data are well written. I am wondering how I might be notified whenever a new post has been made.Thanks.

  141. cigarettes Says:

    This is a wonderful site where we are getting more information. I have been talking with my friend about, he though it is really interesting as well. Keep up with your good work; I would come back to you.

  142. Business Directory Says:

    This looks interesting. I have been looking for an option to handle mail via Ruby. Thanks

  143. dfg45hf Says:

    I had the same problem poop green when I deleted e-mails from pop server it just wiped out the whole lot. I have been searching for a way to fix this but have been unable to find a solution anybody Green Stool During Pregnancy with the same problem as a solution I will be grateful to hear it as it is a very frustrating problem.

  144. Gift baskets Says:

    I find it very hard to work with attachments now that they are just parts.. Gift baskets

  145. Gift baskets Says:

    More methods added to address fields”, as previously it wasn’t that much user-friendly but now it works like a charm.

  146. levitra Says:

    The particulars and exact recommendation are insurance specifically what I was wanting. I’ve book marked and will definitely be returning. Thanks for the information in this blog.

  147. levitra Says:

    Thanks for the tips, maybe I can use this ended my tufted marketing and I’ve been use untold anulus media in run a interaction and they someone existing a big amend on me.

  148. levitra Says:

    I just want to say your article is striking.Well with your permission allow me to grab feed to keep up to date with forthcoming post. Thanks.

  149. levitra Says:

    A very interesting article, interesting ideas and a lot of good questions posed Thanks for your insight for the great written piece.

  150. Statues perth Says:

    I hope in future also i wil get these types of nice blogs…thanks alot!!

  151. personal statement ucas Says:

    I just want to say your article is striking.

  152. Amit Says:

    I am very happy to view this information. Thanks for share its.

  153. Battlefield Hacks Says:

    This is a fantastic website and I can not recommend you guys enough. Full of useful resource and great layout very easy on the eyes. Please do keep up this great work.

  154. Battlefield Hacks Says:

    This is a fantastic website and I can not recommend you guys enough. Full of useful resource and great layout very easy on the eyes. Please do keep up this great work.

  155. dan man Says:

    Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. however only some of the points were actually treated actually good, I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this. daily car insurance

  156. Sheila the furniture women Says:

    That is a informative article that you can find all the details you can be modified. The techniques and the support are all here. This is a great article that post the mail gem version 2.

  157. sheila the forbrugslaan Says:

    Thank you for very informative syntax on how to fix the coding of Mail Gem it such a great post.

  158. sheila the forbrugslaan Says:

    Its additional information to everybody on how to fix bus about mail gem version 2. Hoping for additional information regarding this matter.

  159. ökostrom preise Says:

    Thanks a lot for this wonderful article that you shared with us. Be sure to continue writing, as you seem to be a really professional blogger.

  160. http://bit.ly/zqUBit Says:

    I forgot to say that, I don’t really agree with that commenter who said that this was not an original post. Get a life dude! :P

  161. met vreemden chatten Says:

    Thank you for very informative syntax on how to fix the coding of Mail Gem it such a great post! Thanks again!

  162. Free Stuff Says:

    I really have enjoyed this great and fun information. This was so very cool and fun to read. I love this great site.

  163. swtor Says:

    Wonderful blog! I definitely love how it’s easy on my eyes and also the data are well written. I am wondering how I might be notified whenever a new post has been made.Thanks.

  164. project management tools Says:

    Wonderful web site. Plenty of helpful information here. I am sending it to a few friends ans also sharing in delicious.

  165. Mark Says:

    To follow up on the up-date of this matter on your web-site and would wish to let you know simply how much I loved the time you took to publish this helpful post.
    Within the post, you really spoke regarding how to truly handle this thing with all ease.
    It would be my pleasure to get together some more tips from your web page and come as much as offer others what I have benefited from you. I appreciate your usual fantastic effort.
    Now you can search for some great Room buddies easily!!!

  166. vin dicarlo pandoras box Says:

    This was a fantastic post. Really loved reading your weblog post. The information was very informative and helpful.

  167. halo Says:

    This was a fantastic post. Really loved reading your weblog post. The information was very informative and helpful.

  168. Joseph Says:

    I admit, I have not been on this webpage in a long time… however it was another joy to see It is such an important topic and ignored by so many, even professionals. I thank you to help making people more aware of possible issues. Now you make it easy for me to understand and implement the concept. Thank you for the post. Let’s download the best love quotes iPhone app Love quotes for moods!!!

  169. forex iphone Says:

    These days individuals choose mailing e mail to create. The actual delivery moment is reduced. It will also help important mailing.

  170. post nasal drip Says:

    This is very useful things for me because i use smtp.
    thank you for sharing this.

  171. HD Wallpaper background Says:

    This is the type of blog I’ve been hoping to find: I wanted to thank you for this great read!

  172. Chicago Bachelor Party Says:

    Mail gem version 2 may be really good for us. Here i saw some code and i am appreciating for designing such kind of mail. Thanks

  173. agrandissement de pénis Says:

    The particulars and exact recommendation are insurance specifically what I was wanting. I’ve book marked and will definitely be returning. Thanks for the information in this blog.

  174. combatir la eyaculacion precoz Says:

    I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement the concept.

  175. buy levit Says:

    A very interesting article, interesting ideas and a lot of good questions posed Thanks for your insight for the great written piece.

  176. pinterest invite Says:

    I always use SMTP Delivery Agent which is very useful and easy to implement especially when uploading materials for my website.

  177. buy Sildenaf Says:

    I just want to say your article is striking.Well with your permission allow me to grab feed to keep up to date with forthcoming post. Thanks.

  178. buy tadalafi Says:

    Thanks for the tips, maybe I can use this ended my tufted marketing and I’ve been use untold anulus media in run a interaction and they someone existing a big amend on me.

  179. document management Says:

    Mail gem version 2 contains much more than I expected. Very useful update.

  180. Bo Says:

    The last discharge has been great simply due to the fact I discovered all of the previous insects have been fixed. I cannot imagine just what exactly new products they’ll make the brand another one.

  181. buy prograf online Says:

    Thanks for the tips, maybe I can use this ended my tufted marketing and I’ve been use untold anulus media in run a interaction and they someone existing a big amend on me.

  182. what is Uroxatral Says:

    great!! I just want to say your article is striking.Well with your permission allow me to grab feed to keep up to date with forthcoming post. Thanks.

  183. Consumer Electronics Says:

    It is important to choose right one since the first time. Thank you for the tips. Proper care will save money in long term.

  184. Bingo Says:

    They have to make it better than the previous version. So users will interested for using it.

  185. Official Medicines Says:

    It is important to choose right one since the first time. Thank you for the tips. Proper care will save money in long term.

  186. venta de computadoras Says:

    Thanks for this share mate. I have looking for this information for quite some time now and I am glad to come across your post.

  187. cheap printing Says:

    A good informative post that you have shared and appreciate your work for sharing the information. Got some interesting information and would like to give it a try. Appreciate your work and keep sharing your information.

  188. best resume services Says:

    A good informative post that you have shared and appreciate your work for sharing the information. Got some interesting information and would like to give it a try. Appreciate your work and keep sharing your information.

  189. burraco online Says:

    I believe digging deep for the issue to construct it more informative will actually help, will be looking ahead for more informative billet than this free

  190. hotel room Says:

    The final release was great because I found out all the previous bugs were fixed. I can’t imagine what new stuff they will put in the new one.

  191. hotel room Says:

    The final release was great because I found out all the previous bugs were fixed. I can’t imagine what new stuff they will put in the new one.

  192. Admissions essay Says:

    This is a nice blog. Good clean UI and nice informative blog. I will be coming back soon, Thanks for posting some great ideas. Admissions essay

  193. Admissions essay Says:

    This is a nice blog. Good clean UI and nice informative blog. I will be coming back soon, Thanks for posting some great ideas. Admissions essay

  194. forum Says:

    This looks interesting. I have been looking for an option to handle mail via Ruby. Thanks

  195. michigan photo booth Says:

    I had been looking forward for Mail gem version 2. Thanks for the heads up. Hopefully it shall be according to the expectations.

  196. grand rapids djs Says:

    Thanks for the heads up. I just wanted to know if there is any possibility to keep some emails on the servers for a certain period of time and the server automatically deletes them after that certain period has passed?

  197. Console de jeu Says:

    Thanks for the new release. I have only one request if you could enhance the system of attachments. Currently it is a bit complicated.

  198. jimmy92 Says:

    It is really help to us. Its give us lots of interest and pleasure. Its opportunity amazing vw cars are so fantastic and working style so speedy. Its really a good article. It gives me lots of pleasure and interest.

  199. Sydney Escorts Says:

    They have to set the funds well. Because those are poeple’s money.

  200. Sydney Escorts Says:

    They have to set the funds well. Because those are poeple’s money.

  201. скачать бесплатно фотошоп Says:

    Hi. I have several issues encountered during the integration of the Mail returns field script… I don’t know how to get it work.

  202. wholesale pocket watch Says:

    Thanks a lot for releasing version 2. Its far better than the previous version. Would love to see the more enhanced version in next update.

  203. Free Sports Betting Picks Says:

    Nice to see you actively working on this project. I have been encountering some problems regarding mail attachments in this new release. I am not able to upload multiple attachments at one time. Would love to see this solved in next update. Thanks bunches!

  204. ptc Says:

    Your post is simply spectacular and I can assume you are an expert on this field. Thanks a million and please keep up the fabulous work.

  205. windows 7 Says:

    “Good job”! I’m glad I found this blog. Brilliant and wonderful job ! Your blog site has presented me most of the strategies which I like.windows 7

  206. windows 7 Says:

    “Good job”! I’m glad I found this blog. Brilliant and wonderful job ! Your blog site has presented me most of the strategies which I like.windows 7

  207. windows 7 Says:

    “Good job”! I’m glad I found this blog. Brilliant and wonderful job ! Your blog site has presented me most of the strategies which I like.windows 7

  208. Armenia Says:

    Very nice and informative post. Keep up the good work. Please remember that i m waiting for your next awesome post.domain

  209. rank directory Says:

    it is a good release. I really like it. I am sure that we will see updates in the near future for all.

  210. carinsuranceratesbystate.net Says:

    I found this blog. Brilliant and wonderful job ! Your blog site has presented me most of the strategies..

    carinsuranceratesbystate.net

  211. burlingame personal trainer Says:

    Wonderful post.I have looking for this great information for quite some time now, and i am glad to come across your blog.

  212. الاسهم السعودية Says:

    Good to see a sincere developer putting a lot of effort in this project. So far I haven’t encountered any problem in this new release so I must say well done for all the bug fixing from last release.

  213. Jeux video adultes Says:

    The new release is way better in stability and performance as compared to older release. Well done for providing us the opportunity to use the Mail Gem Version 2.

  214. no deposit casino bonus codes Says:

    Hello. It is very rare these days to find blogs that provide information someone is looking for. I am glad to see that your blog share valued information that can help to many readers. Thanks

  215. Andy Says:

    Thanks, Outdated .. but i could still learn something reading your article.

  216. incasso Says:

    Very nicely written article! Hope to see more like this! Where did you find this information because I want to read more like this? incassobureau

  217. Mola Ray Says:

    Well, I know this version is a little bit hard to told about but getting it wont be hurt too. Try to get with the version quickly.
    sewa ac portable | toko genset

  218. Golf Travel And Resorts Says:

    I like your site. Keep up your work.
    regards,
    Golf Travel And Resorts

  219. cheat codes for wwe 12 Says:

    This is sensitive issue, everyone has diffirent opinion regarding this issue, but make a shot with this article, You explain it very well. Love it ! How can i contact you.. I need further discussion.

  220. gluten free Says:

    Nice knowledge gaining article. This post is really the best on this valuable topic.

  221. dollyjackson Says:

    Thanks for sharing this. It was really an interesting and informative article. Pretty cool post! mississauga real estate | houses for sale in mississauga

  222. manchester escort agency Says:

    Thanks for sharing your blog and good content for outher website

  223. Hitch Mounted Bike Racks Says:

    Good job pals;
    keep it up, thank u so much for beiing so informative and helpful to us :)

  224. Dissertation writers Says:

    I must appreciate you for the information you have shared.I find this information very useful and it has considerably saved my time.

  225. Ford IDS VCM Says:

    Launch X431 – 6 results like Launch Tech USA 301100034 X431 Scan Tool, Launch Tech USA 301100087 X431 Diagun European Scan Tool 100Z

  226. LG led tv Says:

    LED lights offer great customization feature. Its customization feature have enabled the broader categorization and set the distinguishing parameters to develop a range of it. But the determining factor of what type of LED light to use remained solely on the question for what purpose it will be used.

  227. Garage Doors San Bernardino Says:

    I am in agreement with you on many points. You have made me think.Stunning..!!! it made me stop and to look into it deeply, its so wonderful i wana appreciate you from the bottom of my feelings, fantastic keep it up.

  228. What is a bond Says:

    Thanks, I did learn something reading your article regarding new release.

  229. Youtube Converter Says:

    YouTube is the most popular video sharing website on the internet today with videos on practically every subject possible.

  230. ritik Says:

    Really impressed! Everything is very open and very clear explanation of issues. It contains truly information. Your website is very useful. Big buddy in the picture. Thanks for sharing. Looking forward to more!tour to Agra

  231. raoG Says:

    I’ve never seen Steve P. Roma at one of his gyms and I’ve been working out there – on and off – for years. Dig deeper to the about WOW page. Here’s an excerpt I’d like to highlight. Professional thesis writers

  232. online shopping cart software Says:

    Google, as a company, began with a very simple concept but it has grown to become one of the most powerful companies online

  233. jany Says:

    hmm .. nice and a catchy title, I like this post, thanks for share, It’s give me more info about it

    regards B12 Shots for Weight Loss

  234. addu Says:

    This is named a superb article. We are new here. I like your internet site too. This can be pretty awesome. i found some handy info right here. anyways thanks for sharing with us.Bathrooms

Leave a Reply