mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
e318139b37
* implement notification providers * email provider * notification handler * notify users * implement code sent on user eventstore * send email implementation * send init code * handle codes * fix project member handler * add some logs for debug * send emails * text changes * send sms * notification process * send password code * format phone number * test format phone * remove fmts * remove unused code * rename files * add mocks * merge master * Update internal/notification/providers/email/message.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/providers/email/provider.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * requested changes of mr * move locker to eventstore pkg * Update internal/notification/providers/chat/message.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * move locker to eventstore pkg * linebreak * Update internal/notification/providers/email/provider.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/notification/repository/eventsourcing/handler/notification.go Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package email
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
isHTMLRgx = regexp.MustCompile(`.*<html.*>.*`)
|
|
lineBreak = "\r\n"
|
|
)
|
|
|
|
type EmailMessage struct {
|
|
Recipients []string
|
|
BCC []string
|
|
CC []string
|
|
SenderEmail string
|
|
Subject string
|
|
Content string
|
|
}
|
|
|
|
func (msg *EmailMessage) GetContent() string {
|
|
headers := make(map[string]string)
|
|
headers["From"] = msg.SenderEmail
|
|
headers["To"] = strings.Join(msg.Recipients, ", ")
|
|
headers["Cc"] = strings.Join(msg.CC, ", ")
|
|
|
|
message := ""
|
|
for k, v := range headers {
|
|
message += fmt.Sprintf("%s: %s"+lineBreak, k, v)
|
|
}
|
|
|
|
//default mime-type is html
|
|
mime := "MIME-version: 1.0;" + lineBreak + "Content-Type: text/html; charset=\"UTF-8\";" + lineBreak + lineBreak
|
|
if !isHTML(msg.Content) {
|
|
mime = "MIME-version: 1.0;" + lineBreak + "Content-Type: text/plain; charset=\"UTF-8\";" + lineBreak + lineBreak
|
|
}
|
|
subject := "Subject: " + msg.Subject + lineBreak
|
|
message += subject + mime + lineBreak + msg.Content
|
|
|
|
return message
|
|
}
|
|
|
|
func isHTML(input string) bool {
|
|
return isHTMLRgx.MatchString(input)
|
|
}
|