mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
df016be29e
* fix(notification): incorrect date header format The date header in the email envelopes was incorrectly formatted missing a space between the `Date:` header and the value of this header. This also refactors the notification templates system allowing people to manually override the envelope itself. * test: fix tests and linting issues * fix: misc issues * refactor: misc refactoring * docs: add example for envelope with message id * refactor: organize smtp notifier * refactor: move subject interpolation * refactor: include additional placeholders * docs: fix missing link * docs: gravity * fix: rcpt to command * refactor: remove mid * refactor: apply suggestions Co-authored-by: Amir Zarrinkafsh <nightah@me.com> * refactor: include pid Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
22 lines
537 B
Cheetah
22 lines
537 B
Cheetah
From: {{ .From }}
|
|
To: {{ .To }}
|
|
Subject: {{ .Subject }}
|
|
Date: {{ .Date.Format "Mon, 2 Jan 2006 15:04:05 -0700" }}
|
|
Message-ID: <{{ .UUID }}@{{ .Identifier }}>
|
|
MIME-Version: 1.0
|
|
Content-Type: multipart/alternative; boundary="{{ .Boundary }}"
|
|
|
|
--{{ .Boundary }}
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: quoted-printable
|
|
Content-Disposition: inline
|
|
|
|
{{ .Body.PlainText }}
|
|
{{- if not (eq .Body.HTML "") }}
|
|
--{{ .Boundary }}
|
|
Content-Type: text/html; charset="utf-8"
|
|
|
|
{{ .Body.HTML }}
|
|
{{- end }}
|
|
--{{ .Boundary }}--
|