dongyin2643 2019-03-28 09:19
浏览 133
已采纳

如何通过Gmail Go SDK将html模板正文作为电子邮件发送?

I have created a html file(i.e. email.html) which would finally serve me as my email body template. I tried the following code but my email body is a plain text with all the html that I have written in (email.html).

Can you suggest by looking into the code. Where is it going wrong??

Note: Template Parsing and Execute are working fine.

Code:

package main

import (
    "encoding/base64"
    "fmt"
    "html/template"
)

func getMessageString(fromEmail, To, ReplyTo, CC, BCC, Subject, emailBody string) []byte {
    return []byte("Reply-To: " + ReplyTo + "
" + "From: " + fromEmail + "
" + "To: " + To + "
" + "Cc: " + CC + "
" + "Bcc: " + BCC + "
" + "Subject: " + Subject + "

" + "MIME-Version: 1.0
" + "Content-Type: text/html; charset=\"utf-8\"
" + emailBody + "

")
}

func main() {
    t, tempErr := template.New("template.html").ParseFiles("template.html")
    if tempErr != nil {
        fmt.Println(tempErr.Error())
        return
    }

    execErr := t.Execute(buf, data)
    if execErr != nil {
        fmt.Println(execErr.Error())
    } else {
        messageStr := getMessageString("xyz@gmail.com", "abc@ionosnetworks.com", "pqr@gmail.com", "", "", "Test Subject", buf.String())

        var message gmail.Message
        message.Raw = base64.URLEncoding.EncodeToString(messageStr)

        _, err = svc.Users.Messages.Send("me", &message).Do()
        if err != nil {
            fmt.Println(err.Error())
        }
    }
}
  • 写回答

1条回答 默认 最新

  • dongzhi1851 2019-03-28 15:49
    关注

    The error is in the getMessageString func:

    "Subject: " + Subject + "
    
    "
    

    Notice the double sequence, mail server parses everything after double as email content. In your case it skipped Content-Type header. So just remove one and result code should look like:

    func getMessageString(fromEmail, To, ReplyTo, CC, BCC, Subject, emailBody string) []byte {
        return []byte("Reply-To: " + ReplyTo + "
    " + "From: " + fromEmail + "
    " + "To: " + To + "
    " + "Cc: " + CC + "
    " + "Bcc: " + BCC + "
    " + "Subject: " + Subject + "
    " + "MIME-Version: 1.0
    " + "Content-Type: text/html; charset=\"utf-8\"
    
    " + emailBody + "
    ")
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集