Showing posts with label Gmail. Show all posts
Showing posts with label Gmail. Show all posts

Thursday, March 03, 2011

From Twitter 03-02-2011

New iPad 2 mit 3D HD Apple DisplayImage by jwpriebe via Flickr
  • From Twitter 03-01-2011 http://dlvr.it/J1SZL
  • Arcade Expo Giveaway http://dlvr.it/J36PB
  • 4 Sanity Saving Tricks for Gmail http://dlvr.it/J3BKC
  • RT @PaulGrahamRaven: Yup, there it is -> RT @Eamonn_Forde: "OMG" – I've been leaked a pack shot of the new iPad #apple #ipad2 http:/ ...
  • Book Publishers Need to Wake Up and Smell the Disruption http://dlvr.it/J3JCp
  • You’re already dead http://dlvr.it/J3PBR
  • 2 of my meetings disappeared from my calendar today. Serendipitous as I must write my face off now.
  • MIND MELD: Movie Novelizations That Are Actually Good http://dlvr.it/J3VTy
  • RT @Greendrv: Get tickets for *free* Steven Levy @wired talk for Tues 4/26 7pm at Lou Free Public Lib http://digs.by/hOvWmR
  • Can You Sue Facebook To Restore Your Falsely Taken Down Fan Page? http://dlvr.it/J3cmZ
  • RT @mattstaggs: Sheen Family Circus http://t.co/7aSUXxX
  • Give Better Interviews http://dlvr.it/J3jXT
  • B to B Companies: Social Marketing and A Cautionary Tale http://dlvr.it/J3qBv
  • Are humans still evolving by Darwin's natural selection? (hat tip @sfsignal) http://dlvr.it/J3xRn
  • RT @Turner: @Backupify I'm super impressed with your service. Very well done, and way to stay on top with the incredibly elevated volum ...
  • RT @carumors: BREAKING: NO HARDWARE/SOFTWARE TO BE REVEALED TODAY. APPLE SCHEDULED EVENT "JUST TO TALK." "SO LONELY," SAYS THE COMPANY. ...
  • Google Apps customers can now purchase additional storage on the cheap http://dlvr.it/J455b
  • GreenGoose and the gamification of… er, pretty much everything http://dlvr.it/J4BH5
  • Play Along With Our Apple Event Bingo Card http://dlvr.it/J4GKd
Tweets copied by twittinesis.com

Friday, April 10, 2009

How to design an unbreakable e-mail newsletter template

English: email envelope
English: email envelope (Photo credit: Wikipedia)
Apropos of nothing, an old college friend pinged me on Facebook for advice on how to design a usable e-mail newsletter template, since she knew I oversaw a project like that for TechRepublic in the not too distant past. I actually get this question more often than you'd expect, but I never write down my general advice. Thus, I have copy-and-pasted what I told her below for, if not your benefit, than simply so I don't have to retype it up the next time someone asks:

So far as an e-mail template, you can do "pretty" to a point without breaking items left and right. The real problem most designers can't deal with is that you can't use images. For security reasons, many e-mail programs now block images (from new senders) by default, and most people never change the default settings on any application. Thus, most people never see images embedded in e-mail newsletters. (And don't even get me started on mobile/phone mail readers.) Using images in your template is a lot of effort for little gain, but I also know that designers simply won't do without them, so here are a few rules of thumb for (image-addicted) template designers:
  • Most recipients will never see your design, as most people don't open all their e-mail. All they see is the subject line. Write the most compelling subject line you can; it's more important than any headline in the newsletter.
  • Design your newsletter template as an HTML table, with little to no CSS. Gmail blocks most CSS, as do many other mail clients, especially if it calls an external stylesheet.
  • Your template will preferably be single-column, but regardless of how many columns, the entire template should be a maximum of 450 pixels wide. Most mobile mail clients are only about that wide, and lots of versions of Outlook default-lock the preview pane around that width. You don't want users side-scrolling.
  • The masthead (which in a newspaper would say 'The New York Times') should be no more than 20 pixels tall, and should be text-based if at all possible. Again, lots of mail clients preview the beginning of a message, and if all the reader sees is a big broken image or a big nameplate that doesn't say anything about what is in the newsletter, that's a problem. Keep the header small so that actual content makes it into the preview pane in the mail client.
  • Don't use fancy fonts. Stick to Arial, Verdana and Courier. Several mobile clients block the font tag, so your layout will appear in these default fonts anyway.
  • Images should be kept to a minimum, but if they are to be used, they MUST be used this way:
  1. Specify image dimensions of the image in the HTML code. If it's a 45x60 picture, be sure the <img>  tag includes the height="60" and width="45" elements. If you do this, when the image is blocked, it will still take up the same space, and not screw up your formatting. If you don't, the blocked image may become that tiny broken image icon, which screws up your layout.
  2. Specify alt-text for all images, so when they're blocked people know what the picture is supposed to be. Also, if you make the image a link, users can click on the alt-text and still get to the hyperlink.
  3. Right-align all images. People read left-to-right, and since most images are blocked, you don't want the first thing the eye sees to be a broken image. Images aligned right will appear at the end of lines, and not break up natural reading flow.
Hope that helps, and don't say I never gave you nothing.