2020-10-24 22:38:14 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/private"
|
2020-10-26 17:42:27 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-11-17 13:34:35 +01:00
|
|
|
|
2020-10-24 22:38:14 +02:00
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func runSendMail(c *cli.Context) error {
|
2021-07-14 16:43:13 +02:00
|
|
|
ctx, cancel := installSignals()
|
|
|
|
defer cancel()
|
|
|
|
|
2021-12-01 08:50:01 +01:00
|
|
|
setting.LoadFromExisting()
|
2020-10-26 17:42:27 +01:00
|
|
|
|
2020-10-24 22:38:14 +02: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 16:43:13 +02:00
|
|
|
status, message := private.SendEmail(ctx, subject, body, nil)
|
2020-10-24 22:38:14 +02:00
|
|
|
if status != http.StatusOK {
|
2020-10-26 17:42:27 +01:00
|
|
|
fmt.Printf("error: %s\n", message)
|
2020-10-24 22:38:14 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-26 17:42:27 +01:00
|
|
|
fmt.Printf("Success: %s\n", message)
|
2020-10-24 22:38:14 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|