chore: fix typos
This commit is contained in:
parent
8c8ad36f4a
commit
1c0c9b9686
|
@ -6,7 +6,7 @@
|
|||
[![Godoc](https://godoc.org/github.com/matcornic/hermes?status.svg)](https://godoc.org/github.com/matcornic/hermes)
|
||||
|
||||
Hermes is the Go port of the great [mailgen](https://github.com/eladnava/mailgen) engine for Node.js. Check their work, it's awesome!
|
||||
It's a package that generates clean, responsive HTML e-mails for sending transactional e-mails (welcome e-mail, reset password e-mails, receipt e-mails and so on).
|
||||
It's a package that generates clean, responsive HTML e-mails for sending transactional e-mails (welcome e-mails, reset password e-mails, receipt e-mails and so on).
|
||||
|
||||
# Demo
|
||||
|
||||
|
@ -74,7 +74,7 @@ if err != nil {
|
|||
panic(err) // Tip: Handle error with something else than a panic ;)
|
||||
}
|
||||
|
||||
// Optionnaly, preview the generated HTML e-mail by writing it to a local file
|
||||
// Optionally, preview the generated HTML e-mail by writing it to a local file
|
||||
err = ioutil.WriteFile("preview.html", []byte(emailBody), 0644)
|
||||
if err != nil {
|
||||
panic(err) // Tip: Handle error with something else than a panic ;)
|
||||
|
@ -129,13 +129,13 @@ h := hermes.Hermes {
|
|||
|
||||
## Language Customizations
|
||||
|
||||
To customize the e-mail greeting (Hi) or signature (Yours truly), supply custom strings within the e-mail `Body`:
|
||||
To customize the e-mail's greeting ("Hi") or signature ("Yours truly"), supply custom strings within the e-mail's `Body`:
|
||||
|
||||
```go
|
||||
email := hermes.Email{
|
||||
Body: hermes.Body{
|
||||
Greeting: "Dear",
|
||||
Signature: "Sincerly",
|
||||
Signature: "Sincerely",
|
||||
},
|
||||
}
|
||||
```
|
||||
|
@ -176,7 +176,6 @@ Hermes supports injecting custom elements such as dictionaries, tables and actio
|
|||
|
||||
To inject an action button in to the e-mail, supply the `Actions` object as follows:
|
||||
|
||||
|
||||
```go
|
||||
email := hermes.Email{
|
||||
Body: hermes.Body{
|
||||
|
|
Loading…
Reference in New Issue