Nick Cernis shares his number one tip for defeating long emails: stop them before they arrive. By using a contact form rather than a raw email link, you can set the maximum number of characters allowed in the form. When the emailer reaches your limit the form won’t allow them to type any more, necessitating a quick edit to prune the email down to size.

To set the maximum number of characters, add a maxlength attribute to your email form with the following code:

<input name=”message” type=”text” />

becomes this:

<input name=”message” maxlength=”500″ type=”text” />

Replace ‘500′ with your chosen character limit. It’s also essential that you add a caution about the character limit before emailers start typing away.

via Nick [Put Things Off]