Sending documents as html

2

I was just writing a proposal for a client and I was using markdown with vim as an editor. I then convert the markdown to a PDF and send that to the client. This works okay but I would like to have a little more control. So I was thinking of just writing it in html since almost everybody has a browser.

Are there any downsides to emailing documents as html?

Pickels

Posted 2012-03-15T10:28:36.023

Reputation: 163

Answers

2

The downside is that you enter the hell of HTML render engines. Some use Gecko, some use WebKit, some use W3M or Lynx, some use IE, some use the Outlook HTML-fu. In the end you have more control about how the HTML looks on your side, but none of how it looks on your client's side.

Why don't you convert the HTML to PDF?

akira

Posted 2012-03-15T10:28:36.023

Reputation: 52 754

The html I am writing is very basic with a few lines of css to get sans-serif, line-height and padding. I like your point about me having more control on my end but it doesn't actually matter if the other side will just render it crappy anyway. – Pickels – 2012-03-15T11:10:51.353

convert your html to pdf then, if your html+css is pretty basic it will look good enough. and the other side will be happy with pdf :) – akira – 2012-03-15T11:19:05.657

0

People like the simplicity of one thing : 1 file. If you write any kind of non-trivial html you are going to use multiple files - for the css and images. Hopefully you don't intend to include javascript in a proposal, as it would certainly raise a red-flag of suspicion (as in, is this person trying to do something under the covers?). Also a browser implies publicly viewable files - even though this situation is entirely on the client's machine, it gives the feeling of non-privacy.

jdh

Posted 2012-03-15T10:28:36.023

Reputation: 6 645

0

You would have to teach the client something new and potentially scary depending on their level of computer literacy. "Do what with my browser? Open file? Why didn't you just send it to me in word? How can I look at my OWN computer with a web browser? Whats a tab?" yadda etc. Don't confuse the client! What's wrong with txt? (Ha Ha... personal opinion. I know a salesman wouldn't go for txt)

conspiritech

Posted 2012-03-15T10:28:36.023

Reputation: 389