Re: [Evolution] Annoying Bug/Teiken
- From: Reid Thompson <reid thompson ateb com>
- To: Alpár Jüttner <alpar cs elte hu>
- Cc: Evolution e-list <evolution-list gnome org>
- Subject: Re: [Evolution] Annoying Bug/Teiken
- Date: Tue, 05 May 2009 14:31:54 -0400
On Tue, 2009-05-05 at 12:52 +0100, AlpÃr JÃttner wrote:
Brewster chimes in.
Whether they realize it or not, it can also be very annoying for
their recipients who are among the security-conscious who have their
emailers optioned to *not* translate HTML.
I do not believe HTML should be used in emails.
Lots of people suggest this, but I've never heard a satisfactory advice
on what to use instead. Could you tell me how to send someone say a
simple table if not in HTML? In a .doc or .xls file? HTML is at least
standardized, cross-platform and directly supported by contemporary mail
clients and web-mail services.
Regards,
Alpar
$ elinks --dump tbl.html
With a normal border:
+--------------+
| First | Row |
|--------+-----|
| Second | Row |
+--------------+
With a thick border:
+--------------+
| First | Row |
|--------+-----|
| Second | Row |
+--------------+
With a very thick border:
+--------------+
| First | Row |
|--------+-----|
| Second | Row |
+--------------+
$ cat tbl.html
<html>
<body>
<h4>With a normal border:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>With a thick border:</h4>
<table border="8">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>With a very thick border:</h4>
<table border="15">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
</body>
</html>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]