19 lines
801 B
Cheetah
19 lines
801 B
Cheetah
{{define "subject"}}[Vantage] {{.Topic}} {{.Email}}{{end}}
|
|
{{define "tone"}}accent{{end}}
|
|
{{define "category"}}Enquiry{{end}}
|
|
{{define "pill"}}{{if .Topic}}{{template "chip" (dict "label" .Topic "tone" "accent")}}{{end}}{{end}}
|
|
{{define "title"}}New enquiry from {{.Name}}{{end}}
|
|
{{define "body"}}
|
|
{{template "lead" "Someone has used the contact form on the Vantage site."}}
|
|
{{template "rows" (list
|
|
(dict "k" "Name" "v" .Name)
|
|
(dict "k" "Email" "v" .Email)
|
|
(dict "k" "Servers" "v" .Servers)
|
|
(dict "k" "Topic" "v" .Topic)
|
|
(dict "k" "Received" "v" .Received))}}
|
|
{{template "label" "Message"}}
|
|
{{template "note" .Message}}
|
|
{{template "small" (printf "Reply to this email to answer %s directly." .Email)}}
|
|
{{end}}
|
|
{{define "why"}}this inbox receives the contact form on the Vantage site.{{end}}
|