php小編小新為您帶來了一篇關於在Go中使用AWS SES v2發送帶有附件的原始電子郵件的文章。 AWS SES v2是一種靈活可靠的電子郵件服務,而Go是一種強大的程式語言,兩者的結合能幫助您輕鬆發送原始的電子郵件有附件的電子郵件。本文將詳細介紹如何使用AWS SES v2 API和Go語言編寫程式碼,以實現此功能。無論您是初學者或有經驗的開發者,本文都將為您提供清晰的指導,助您順利完成任務。讓我們一起開始吧!
問題內容
我正在嘗試建立一個 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 id="s">%[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)) }
以上是透過 AWS SES v2 在 Go 中傳送帶有附件的原始電子郵件的詳細內容。更多資訊請關注PHP中文網其他相關文章!

Golang和C 在性能競賽中的表現各有優勢:1)Golang適合高並發和快速開發,2)C 提供更高性能和細粒度控制。選擇應基於項目需求和團隊技術棧。

Golang適合快速開發和並發編程,而C 更適合需要極致性能和底層控制的項目。 1)Golang的並發模型通過goroutine和channel簡化並發編程。 2)C 的模板編程提供泛型代碼和性能優化。 3)Golang的垃圾回收方便但可能影響性能,C 的內存管理複雜但控制精細。

goimpactsdevelopmentpositationality throughspeed,效率和模擬性。 1)速度:gocompilesquicklyandrunseff,IdealforlargeProjects.2)效率:效率:ITScomprehenSevestAndardArdardArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdArdEcceSteral Depentencies,增強的Depleflovelmentimency.3)簡單性。

C 更適合需要直接控制硬件資源和高性能優化的場景,而Golang更適合需要快速開發和高並發處理的場景。 1.C 的優勢在於其接近硬件的特性和高度的優化能力,適合遊戲開發等高性能需求。 2.Golang的優勢在於其簡潔的語法和天然的並發支持,適合高並發服務開發。

Golang在实际应用中表现出色,以简洁、高效和并发性著称。1)通过Goroutines和Channels实现并发编程,2)利用接口和多态编写灵活代码,3)使用net/http包简化网络编程,4)构建高效并发爬虫,5)通过工具和最佳实践进行调试和优化。

Go語言的核心特性包括垃圾回收、靜態鏈接和並發支持。 1.Go語言的並發模型通過goroutine和channel實現高效並發編程。 2.接口和多態性通過實現接口方法,使得不同類型可以統一處理。 3.基本用法展示了函數定義和調用的高效性。 4.高級用法中,切片提供了動態調整大小的強大功能。 5.常見錯誤如競態條件可以通過gotest-race檢測並解決。 6.性能優化通過sync.Pool重用對象,減少垃圾回收壓力。

Go語言在構建高效且可擴展的系統中表現出色,其優勢包括:1.高性能:編譯成機器碼,運行速度快;2.並發編程:通過goroutines和channels簡化多任務處理;3.簡潔性:語法簡潔,降低學習和維護成本;4.跨平台:支持跨平台編譯,方便部署。

關於SQL查詢結果排序的疑惑學習SQL的過程中,常常會遇到一些令人困惑的問題。最近,筆者在閱讀《MICK-SQL基礎�...


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境