c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
888 B
Go
34 lines
888 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package private
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/setting"
|
|
)
|
|
|
|
// Email structure holds a data for sending general emails
|
|
type Email struct {
|
|
Subject string
|
|
Message string
|
|
To []string
|
|
}
|
|
|
|
// SendEmail calls the internal SendEmail function
|
|
// It accepts a list of usernames.
|
|
// If DB contains these users it will send the email to them.
|
|
// If to list == nil, it's supposed to send emails to every user present in DB
|
|
func SendEmail(ctx context.Context, subject, message string, to []string) (*ResponseText, ResponseExtra) {
|
|
reqURL := setting.LocalURL + "api/internal/mail/send"
|
|
|
|
req := newInternalRequestAPI(ctx, reqURL, "POST", Email{
|
|
Subject: subject,
|
|
Message: message,
|
|
To: to,
|
|
})
|
|
|
|
return requestJSONResp(req, &ResponseText{})
|
|
}
|