Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Using Ruby to Send Targeted Email to an Apple Watch

The other day I ran into a post about sending emails that could fall back to support the limited HTML that the Apple watch can display called hidden Apple Watch email. After reading the post I wondered if I could write a quick example to do what they demonstrated. I turned to Ruby + Ruby Mail gem to give this a try and found that there are a few things to know but generally it works well.

To get started make sure you have the mail gem installed:

gem install mail

Next there are two main points to remember before diving into the examples:

  • The sort order of the mime types is important, they need to come in the order listed in the examples or you will end up with the plain text version of the email on the watch
  • You need to include something in the full featured HTML section that can't render on the watch or you will see the full featured HTML on the watch. See the article above for some pointers but generally the watch isn't going to fetch an image from the web so that should do it and is what I have in the following images.

First a simple example that will show plain text for mail clients that don't support HTML at all, normal HTML for full featured clients and a subset of HTML for the Apple watch.

require 'mail'

mail = Mail.new do
  to      '[email protected]'
  from    '[email protected]'
  subject 'Watch mail example'
end

# 
# The order supplied here matters
# 
mail.body.set_sort_order [ "text/plain", "text/watch-html", "text/html" ]

# 
# The order here doesn't matter
# 
text_part = Mail::Part.new do
  body 'This is plain text'
end
mail.text_part = text_part

watch_part = Mail::Part.new do
  content_type 'text/watch-html; charset=UTF-8'
  body '<b>This is HTML for the Apple watch</b>'
end
mail.add_part watch_part

# 
# If this part has something in it that can't display on the watch then 
# the watch part will display. Keep that in mind if you want to force the
# watch part to display. Here the link out to an image will force the 
# fallback to happen.
# 
html_part = Mail::Part.new do
  content_type 'text/html; charset=UTF-8'
  body '<h1>This is HTML</h1><img src="http://images.company.com/someimage.jpg"/>'
end
mail.html_part = html_part

mail.deliver

Here is an example that includes an image that will display on the watch. It is important that in this case the image comes first in the sort order.

require 'mail'

mail = Mail.new do
  to      '[email protected]'
  from    '[email protected]'
  subject 'Watch mail example with image'
end

# 
# The order supplied here matters
# 
mail.body.set_sort_order [ "image/png", "text/plain", "text/watch-html", "text/html" ]

# 
# The order here doesn't matter but you will need to 
# reference the image later.
# 
mail.attachments['test.png'] = File.read('/tmp/test.png')
image_cid = mail.parts.first.url

text_part = Mail::Part.new do
  body 'This is plain text'
end
mail.text_part = text_part

watch_part = Mail::Part.new do
  content_type 'text/watch-html; charset=UTF-8'
  body '<b>This is HTML for the watch</b> <br/> <img src="' + image_cid + '"/>'
end
mail.add_part watch_part

html_part = Mail::Part.new do
  content_type 'text/html; charset=UTF-8'
  body '<h1>This is HTML</h1><img src="http://images.company.com/someimage.jpg"/>'
end
mail.html_part = html_part

mail.deliver


This post first appeared on Thoughts On Software Development And Engineering, please read the originial post: here

Share the post

Using Ruby to Send Targeted Email to an Apple Watch

×

Subscribe to Thoughts On Software Development And Engineering

Get updates delivered right to your inbox!

Thank you for your subscription

×