mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
13 lines
305 B
Go
13 lines
305 B
Go
|
|
package emailing
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"github.com/SigNoz/signoz/pkg/types/emailtypes"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Emailing interface {
|
||
|
|
// Sends an HTML email to the given address with the given subject and template name and data.
|
||
|
|
SendHTML(context.Context, string, string, emailtypes.TemplateName, map[string]any) error
|
||
|
|
}
|