aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/mail.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-21 18:48:06 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-21 18:48:06 +0200
commit1845873048e1f2c3499e75a4e5cbbe8d1247170d (patch)
treeaa2968d2ead185c440957d9d3ed2cfb54abf6ce8 /internal/feed/mail.go
parent87935efe945c6847d2b18afaf7bfae5e80aa61e6 (diff)
downloadfeed2imap-go-1845873048e1f2c3499e75a4e5cbbe8d1247170d.tar.gz
feed2imap-go-1845873048e1f2c3499e75a4e5cbbe8d1247170d.tar.bz2
feed2imap-go-1845873048e1f2c3499e75a4e5cbbe8d1247170d.zip
Move HTML template to string
Diffstat (limited to 'internal/feed/mail.go')
-rw-r--r--internal/feed/mail.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/feed/mail.go b/internal/feed/mail.go
index 4d07c1a..94f2ea1 100644
--- a/internal/feed/mail.go
+++ b/internal/feed/mail.go
@@ -31,10 +31,8 @@ func fromAdress(feed *Feed, item feeditem, cfg config.Config) []*mail.Address {
}
}
-var htmlTemplate = template.ForFile("internal/feed/feed.tpl")
-
func writeHtml(writer io.Writer, item feeditem) error {
- return htmlTemplate.Execute(writer, item)
+ return template.Feed.Execute(writer, item)
}
func writeToBuffer(b *bytes.Buffer, feed *Feed, item feeditem, cfg config.Config) error {