Better spacing
This commit is contained in:
parent
bfde01c13c
commit
d64ba0eada
30
README.md
30
README.md
|
@ -5,11 +5,7 @@ It's a package that generates clean, responsive HTML e-mails for sending transac
|
|||
|
||||
# Demo
|
||||
|
||||
<img src="https://raw.github.com/matcornic/hermes/master/screens/default/welcome.png" height="400" />
|
||||
|
||||
<img src="https://raw.github.com/matcornic/hermes/master/screens/default/reset.png" height="400" />
|
||||
|
||||
<img src="https://raw.github.com/matcornic/hermes/master/screens/default/receipt.png" height="400" />
|
||||
<img src="https://raw.github.com/matcornic/hermes/master/screens/default/welcome.png" height="400" /> <img src="https://raw.github.com/matcornic/hermes/master/screens/default/reset.png" height="400" /> <img src="https://raw.github.com/matcornic/hermes/master/screens/default/receipt.png" height="400" />
|
||||
|
||||
# Usage
|
||||
|
||||
|
@ -82,7 +78,7 @@ if err != nil {
|
|||
|
||||
This code would output the following HTML template:
|
||||
|
||||
![Demo](screens/demo.png)
|
||||
<img src="https://raw.github.com/matcornic/hermes/master/screens/demo.png" height="400" />
|
||||
|
||||
> Theme templates will be incorporated in your application binary. If you want to use external templates (for configuration), use your own theme by implementing `hermes.Theme` interface with code searching for your files.
|
||||
|
||||
|
@ -141,15 +137,6 @@ email := hermes.Email{
|
|||
|
||||
To use a custom title string rather than a greeting/name introduction, provide it instead of `Name`:
|
||||
|
||||
```js
|
||||
var email = {
|
||||
body: {
|
||||
// Title will override `name`
|
||||
title: 'Welcome to Mailgen!'
|
||||
}
|
||||
};
|
||||
```
|
||||
|
||||
```go
|
||||
email := hermes.Email{
|
||||
Body: hermes.Body{
|
||||
|
@ -161,19 +148,6 @@ email := hermes.Email{
|
|||
|
||||
To customize the `Copyright`, override it when initializing `Hermes` within your `Product` as follows:
|
||||
|
||||
```js
|
||||
// Configure mailgen
|
||||
var mailGenerator = new Mailgen({
|
||||
theme: 'salted',
|
||||
product: {
|
||||
name: 'Mailgen',
|
||||
link: 'https://mailgen.js/',
|
||||
// Custom copyright notice
|
||||
copyright: 'Copyright © 2016 Mailgen. All rights reserved.',
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
```go
|
||||
// Configure hermes by setting a theme and your product info
|
||||
h := hermes.Hermes{
|
||||
|
|
Loading…
Reference in New Issue