Go - 如何使用Pongo2将模板渲染到临时字节缓冲区?

时间:2017-01-19 21:11:53

标签: go html-email

我正在尝试使用Golang发送HTML电子邮件,但我尝试使用Pongo2而不是使用本机Golang html / template包。

在这个问题中:Is it possible to create email templates with CSS in Google App Engine Go?

用户提供此示例,该示例使用html / template

var tmpl = template.Must(template.ParseFiles("templates/email.html"))

buff := new(bytes.Buffer)
if err = tmpl.Execute(buff, struct{ Name string }{"Juliet"}); err != nil {
    panic(err.Error())
}
msg := &mail.Message{
    Sender:   "romeo@montague.com",
    To:       []string{"Juliet <juliet@capulet.org>"},
    Subject:  "See you tonight",
    Body:     "...you put here the non-HTML part...",
    HTMLBody: buff.String(),
}
c := appengine.NewContext(r)
if err := mail.Send(c, msg); err != nil {
    c.Errorf("Alas, my user, the email failed to sendeth: %v", err)

我想做什么

var tmpl = pongo2.Must(pongo2.FromFile("template.html"))
buff := new(bytes.Buffer)
tmpl.Execute(buff, pongo2.Context{"data": "best-data"}, w)

这里的问题是pongo2.Execute()只允许输入上下文数据而不是buff。

我的最终目标是能够使用Pongo2编写模板,并且我可以使用它来发送我的电子邮件来呈现HTML。

我的问题是我做错了什么?这可能是我想要实现的目标吗?如果我能找到一种方法将HTML呈现为buff,我可以稍后将其用作buff.String()部分,这将允许我在HTML正文中输入它。

1 个答案:

答案 0 :(得分:2)

使用ExecuteWriterUnbuffered代替Execute

tmpl.ExecuteWriterUnbuffered(pongo2.Context{"data": "best-data"}, &buff)

不确定w在您的示例中做了什么。如果您还想写另一个Writer,则可以使用io.MultiWriter

// writes to w2 will go to both buff and w
w2 := io.MultiWriter(&buff, w)