kra-new/internal/service/system/email.go

17 lines
422 B
Go

package system
import (
"context"
"kra/internal/biz/system"
)
type EmailService struct{ uc *system.EmailUsecase }
func NewEmailService(uc *system.EmailUsecase) *EmailService { return &EmailService{uc: uc} }
func (s *EmailService) Test(ctx context.Context) error { return s.uc.Test(ctx) }
func (s *EmailService) Send(ctx context.Context, to, subject, body string) error {
return s.uc.Send(ctx, to, subject, body)
}