Add Amazon SES for sending mails

This commit is contained in:
Vishal 2024-03-27 19:58:27 +05:30
parent 79f7fb9ad9
commit 9893e3f305
2 changed files with 78 additions and 0 deletions

View file

@ -164,6 +164,15 @@ transmail:
# Mail agent: dev
key:
# AWS SES
# Use case: Sending mails
ses-smtp:
isEnabled: false
host:
port:
username:
password:
# Apple config (optional)
# Use case: In-app purchases
apple:

View file

@ -10,6 +10,7 @@ import (
"encoding/json"
"html/template"
"net/http"
"net/smtp"
"strings"
"github.com/ente-io/museum/ente"
@ -18,6 +19,69 @@ import (
"github.com/spf13/viper"
)
func SendSES(toEmails []string, fromName string, fromEmail string, subject string, htmlBody string, inlineImages []map[string]interface{}) error {
if len(toEmails) == 0 {
return ente.ErrBadRequest
}
smtpServer := viper.GetString("ses-smtp.host")
smtpPort := viper.GetString("ses-smtp.port")
smtpUsername := viper.GetString("ses-smtp.username")
smtpPassword := viper.GetString("ses-smtp.password")
var emailMessage string
// Construct 'emailAddresses' with comma-separated email addresses
var emailAddresses string
for i, email := range toEmails {
if i != 0 {
emailAddresses += ","
}
emailAddresses += email
}
header := "From: " + fromName + " <" + fromEmail + ">\n" +
"To: " + emailAddresses + "\n" +
"Subject: " + subject + "\n" +
"MIME-Version: 1.0\n" +
"Content-Type: multipart/related; boundary=boundary\n\n" +
"--boundary\n"
htmlContent := "Content-Type: text/html; charset=us-ascii\n\n" + htmlBody + "\n"
emailMessage = header + htmlContent
if inlineImages == nil {
emailMessage += "--boundary--"
} else {
for _, inlineImage := range inlineImages {
emailMessage += "--boundary\n"
var mimeType = inlineImage["mime_type"].(string)
var contentID = inlineImage["cid"].(string)
var imgBase64Str = inlineImage["content"].(string)
var image = "Content-Type: " + mimeType + "\n" +
"Content-Transfer-Encoding: base64\n" +
"Content-ID: <" + contentID + ">\n" +
"Content-Disposition: inline\n\n" + imgBase64Str + "\n"
emailMessage += image
}
emailMessage += "--boundary--"
}
// Send the email to each recipient
for _, toEmail := range toEmails {
auth := smtp.PlainAuth("", smtpUsername, smtpPassword, smtpServer)
err := smtp.SendMail(smtpServer+":"+smtpPort, auth, fromEmail, []string{toEmail}, []byte(emailMessage))
if err != nil {
return stacktrace.Propagate(err, "")
}
}
return nil
}
// Send sends an email
func Send(toEmails []string, fromName string, fromEmail string, subject string, htmlBody string, inlineImages []map[string]interface{}) error {
if len(toEmails) == 0 {
@ -69,6 +133,11 @@ func SendTemplatedEmail(to []string, fromName string, fromEmail string, subject
if err != nil {
return stacktrace.Propagate(err, "")
}
isSESEnabled := viper.GetBool("ses-smtp.isEnabled")
if isSESEnabled {
return SendSES(to, fromName, fromEmail, subject, body, inlineImages)
}
return Send(to, fromName, fromEmail, subject, body, inlineImages)
}