2020-10-24 14:38:14 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-24 14:38:14 -06:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/private"
|
2020-10-26 10:42:27 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-11-17 05:34:35 -07:00
|
|
|
|
2020-10-24 14:38:14 -06:00
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func runSendMail(c *cli.Context) error {
|
2021-07-14 08:43:13 -06:00
|
|
|
ctx, cancel := installSignals()
|
|
|
|
defer cancel()
|
|
|
|
|
2021-12-01 00:50:01 -07:00
|
|
|
setting.LoadFromExisting()
|
2020-10-26 10:42:27 -06:00
|
|
|
|
2020-10-24 14:38:14 -06:00
|
|
|
if err := argsSet(c, "title"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
subject := c.String("title")
|
|
|
|
confirmSkiped := c.Bool("force")
|
|
|
|
body := c.String("content")
|
|
|
|
|
|
|
|
if !confirmSkiped {
|
|
|
|
if len(body) == 0 {
|
|
|
|
fmt.Print("warning: Content is empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Print("Proceed with sending email? [Y/n] ")
|
|
|
|
isConfirmed, err := confirm()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if !isConfirmed {
|
|
|
|
fmt.Println("The mail was not sent")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-14 08:43:13 -06:00
|
|
|
status, message := private.SendEmail(ctx, subject, body, nil)
|
2020-10-24 14:38:14 -06:00
|
|
|
if status != http.StatusOK {
|
2020-10-26 10:42:27 -06:00
|
|
|
fmt.Printf("error: %s\n", message)
|
2020-10-24 14:38:14 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-26 10:42:27 -06:00
|
|
|
fmt.Printf("Success: %s\n", message)
|
2020-10-24 14:38:14 -06:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|