package hermes // Default is the theme by default type Default struct{} // Name returns the name of the default theme func (dt *Default) Name() string { return "default" } // HTMLTemplate returns a Golang template that will generate an HTML email. func (dt *Default) HTMLTemplate() string { return `
|
{{ $line }}
{{ end }} {{ end }} {{ if (ne .Email.Body.FreeMarkdown "") }} {{ .Email.Body.FreeMarkdown.ToHTML }} {{ else }} {{ with .Email.Body.Dictionary }}{{ $entry.Key }} | {{ end }}
---|
{{ $cell.Value }} | {{ end }}
{{ $action.Instructions }} {{ $action.Button.Link }}
{{ end }} {{ end }} {{ end }} {{ with .Email.Body.Outros }} {{ range $line := . }}{{ $line }}
{{ end }} {{ end }}
{{.Email.Body.Signature}},
{{.Hermes.Product.Name}} - {{.Hermes.Product.Link}}
{{.Hermes.Product.Copyright}}
` }