mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
24 lines
823 B
Go
24 lines
823 B
Go
package senders
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/logging"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/fs"
|
|
"github.com/zitadel/zitadel/internal/notification/channels/log"
|
|
"github.com/zitadel/zitadel/internal/notification/channels/smtp"
|
|
)
|
|
|
|
func EmailChannels(ctx context.Context, emailConfig func(ctx context.Context) (*smtp.EmailConfig, error), getFileSystemProvider func(ctx context.Context) (*fs.FSConfig, error), getLogProvider func(ctx context.Context) (*log.LogConfig, error)) (chain *Chain, err error) {
|
|
p, err := smtp.InitSMTPChannel(ctx, emailConfig)
|
|
if err == nil {
|
|
chain.channels = append(chain.channels, p)
|
|
}
|
|
chain, err = debugChannels(ctx, getFileSystemProvider, getLogProvider)
|
|
if err != nil {
|
|
logging.New().Info("Error in creating debug channels")
|
|
}
|
|
return chain, nil
|
|
}
|