Initial commit: README, base plaintext and richtext signatures

This commit is contained in:
Timothée Floure 2020-11-15 18:39:36 +01:00
commit 988b683494
3 changed files with 68 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# e-Durable mail signature
You'll find the templates of e-Durable mail signatures in this repository.
Properly configuring your client is your job (feel free to contribute
procedures here - I won't if it can be helped).
Please note that:
* You SHOULD send e-mails in plaintext. Plaintext has many advantages:
- A few reasons to use plaintext over HTML can be found
[here](https://useplaintext.email/#why-plaintext).
* You CAN - but do not have to - send e-mails in rich text (HTML).
- Receiver will see the fancy signature, including logo... which will be
heavier than the actual text.

11
plaintext-signature.txt Normal file
View File

@ -0,0 +1,11 @@
Note: a plain-text signature starts with the '-- ' line (including trailing space).
```
--
Chauve Souris, Test User
+41 76 666 66 66
e-Durable SA
Domaine des Pins C,
1196 Gland, Switzerland
```

43
richtext-signature.html Normal file
View File

@ -0,0 +1,43 @@
<style>
#signature-container {
display: flex;
flex-direction: row;
color: #898989;
}
.signature-column {
display: flex;
flex-direction: column;
height: 75px;
justify-content: space-between;
}
#signature-column-right {
margin-left: 20px;
padding-left: 20px;
border-left: 1px solid #898989;
}
#signature-name {
font-weight: bold;
color: blue;
}
</style>
<div id="signature-container">
<div class="signature-column">
<img src="edurable-logo.png" alt="e-Durable logo" />
<div>
Domaine des Pins C<br />
1196 Gland, Switzerland
</div>
</div>
<div class="signature-column" id="signature-column-right">
<div>
<span id="signature-name">Chauve Souris</span>
<br />
<small>Test User</small>
</div>
<div>+41 76 666 66 66</div>
</div>
</div>