From 5645ce7111f5625fbc45996feea020ab5f044111 Mon Sep 17 00:00:00 2001 From: ekleintop Date: Fri, 10 Feb 2017 12:57:35 -0500 Subject: [PATCH] Update worker.go --- worker/worker.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/worker/worker.go b/worker/worker.go index 9c011db9..2f65feae 100644 --- a/worker/worker.go +++ b/worker/worker.go @@ -171,10 +171,7 @@ func processCampaign(c *models.Campaign) { // Attach the files for _, a := range c.Template.Attachments { e.Attach(func(a models.Attachment) (string, gomail.FileSetting) { - Attach, _ := base64.StdEncoding.DecodeString(a.Content) - Attach2 := bytes.Replace(Attach, []byte("{{.RId}}"), []byte(t.RId), -1) - a.Content = base64.StdEncoding.EncodeToString([]byte(Attach2)) - // Name2 := strings.Replace(a.Name, ".", "_" + t.RId + ".", -1)return a.Name, gomail.SetCopyFunc(func(w io.Writer) error { + return a.Name, gomail.SetCopyFunc(func(w io.Writer) error { decoder := base64.NewDecoder(base64.StdEncoding, strings.NewReader(a.Content)) _, err = io.Copy(w, decoder) return err