通过 AWS SES v2 在 Go 中发送带有附件的原始电子邮件
来源:stackoverflow
时间:2024-02-12 14:54:22 259浏览 收藏
从现在开始,努力学习吧!本文《通过 AWS SES v2 在 Go 中发送带有附件的原始电子邮件》主要讲解了等等相关知识点,我会在golang学习网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!
问题内容
我正在尝试创建一个 http 端点来处理从网站提交的表单。
该表单具有以下字段:
- 姓名
- 电子邮件
- 电话
- 电子邮件正文(电子邮件正文的文本)
- 照片(最多 5 张)
然后,我的端点将向 [email protected] 发送一封电子邮件,其中照片作为附件,电子邮件正文如下:
john ([email protected]) says: email body ...
我是 go 新手,但我已经尝试让它工作 2 周了,但仍然没有任何运气。
我现在的代码是:
package aj
import (
"bytes"
"encoding/base64"
"fmt"
"io/ioutil"
"mime"
"net/http"
"net/mail"
"net/textproto"
"os"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/sesv2"
"github.com/aws/aws-sdk-go-v2/service/sesv2/types"
"go.uber.org/zap"
)
const expectedContentType string = "multipart/form-data"
const charset string = "UTF-8"
func FormSubmissionHandler(logger *zap.Logger, emailSender EmailSender) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
logger.Info("running the form submission handler...")
// get the destination email address
destinationEmail := os.Getenv("DESTINATION_EMAIL")
// get the subject line of the email
emailSubject := os.Getenv("EMAIL_SUBJECT")
// enforce a multipart/form-data content-type
contentType := r.Header.Get("content-type")
mediatype, _, err := mime.ParseMediaType(contentType)
if err != nil {
logger.Error("error when parsing the mime type", zap.Error(err))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
if mediatype != expectedContentType {
logger.Error("unsupported content-type", zap.Error(err))
http.Error(w, fmt.Sprintf("api expects %v content-type", expectedContentType), http.StatusUnsupportedMediaType)
return
}
err = r.ParseMultipartForm(10 << 20)
if err != nil {
logger.Error("error parsing form data", zap.Error(err))
http.Error(w, "error parsing form data", http.StatusBadRequest)
return
}
name := r.MultipartForm.Value["name"]
if len(name) == 0 {
logger.Error("name not set", zap.Error(err))
http.Error(w, "api expects name to be set", http.StatusBadRequest)
return
}
email := r.MultipartForm.Value["email"]
if len(email) == 0 {
logger.Error("email not set", zap.Error(err))
http.Error(w, "api expects email to be set", http.StatusBadRequest)
return
}
phone := r.MultipartForm.Value["phone"]
if len(phone) == 0 {
logger.Error("phone not set", zap.Error(err))
http.Error(w, "api expects phone to be set", http.StatusBadRequest)
return
}
body := r.MultipartForm.Value["body"]
if len(body) == 0 {
logger.Error("body not set", zap.Error(err))
http.Error(w, "api expects body to be set", http.StatusBadRequest)
return
}
files := r.MultipartForm.File["photos"]
if len(files) == 0 {
logger.Error("no files were submitted", zap.Error(err))
http.Error(w, "api expects one or more files to be submitted", http.StatusBadRequest)
return
}
emailService := NewEmailService()
sendEmailInput := sesv2.SendEmailInput{}
destination := &types.Destination{
ToAddresses: []string{destinationEmail},
}
// add the attachments to the email
for _, file := range files {
f, err := file.Open()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
defer f.Close()
// not sure what to do here to get the email with the attachements
}
message := &types.RawMessage{
Data: make([]byte, 0), // This must change to be the bytes of the raw message
}
content := &types.EmailContent{
Raw: message,
}
sendEmailInput.Content = content
sendEmailInput.Destination = destination
sendEmailInput.FromEmailAddress = aws.String(email[0])
err = emailService.SendEmail(logger, r.Context(), &sendEmailInput)
if err != nil {
logger.Error("an error occured sending the email", zap.Error(err))
http.Error(w, "error sending email", http.StatusBadRequest)
return
}
w.WriteHeader(http.StatusOK)
})
}
我的理解是(如果我错了,请纠正我)我必须以与此类似的格式构建原始消息。假设这是正确的,我只是不知道如何在 go 中做到这一点
正确答案
为了创建附件,您必须使用 base64 消息内容来 encode。
这里是发送 csv 作为附件的示例:
import (
// ...
secretutils "github.com/alessiosavi/GoGPUtils/aws/secrets"
sesutils "github.com/alessiosavi/GoGPUtils/aws/ses"
)
type MailConf struct {
FromName string `json:"from_name,omitempty"`
FromMail string `json:"from_mail,omitempty"`
To string `json:"to,omitempty"`
CC []string `json:"cc,omitempty"`
}
func SendRawMail(filename string, data []byte) error {
var mailConf MailConf
if err := secretutils.UnmarshalSecret(os.Getenv("XXX_YOUR_SECRET_STORED_IN_AWS"), &mailConf); err != nil {
return err
}
subject := fmt.Sprintf("Found errors for the following file: %s", filename)
var carbonCopy string
if len(mailConf.CC) > 0 {
carbonCopy = stringutils.JoinSeparator(",", mailConf.CC...)
} else {
carbonCopy = ""
}
raw := fmt.Sprintf(`From: "%[1]s" <%[2]s>
To: %[3]s
Cc: %[4]s
Subject: %[5]s
Content-Type: multipart/mixed;
boundary="1"
--1
Content-Type: multipart/alternative;
boundary="sub_1"
--sub_1
Content-Type: string/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Please see the attached file for a list of errors
--sub_1
Content-Type: string/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
<html>
<head></head>
<body>
<h1>%[6]s</h1>
<p><h2>Please see the attached file for the list of the rows.<h2></p>
</body>
</html>
--sub_1--
--1
Content-Type: string/plain; name="errors_%[6]s"
Content-Description: errors_%[6]s
Content-Disposition: attachment;filename="errors_%[6]s";
creation-date="%[7]s";
Content-Transfer-Encoding: base64
%[8]s
--1--`, mailConf.FromName, mailConf.FromMail, mailConf.To, carbonCopy, subject, strings.Replace(filename, ".csv", ".json", 1), time.Now().Format("2-Jan-06 3.04.05 PM"), base64.StdEncoding.EncodeToString(data))
return sesutils.SendMail([]byte(raw))
}
以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。
声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
478 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 516次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 500次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 485次学习