mirror of
https://github.com/ivabus/pop
synced 2024-12-04 22:15:08 +03:00
fix: copy edit
This commit is contained in:
parent
6879387140
commit
f7b87a514c
1 changed files with 5 additions and 5 deletions
10
main.go
10
main.go
|
@ -72,12 +72,12 @@ func hasStdin() bool {
|
|||
}
|
||||
|
||||
func init() {
|
||||
rootCmd.Flags().StringSliceVar(&to, "bcc", []string{}, "Blind carbon copy recipients")
|
||||
rootCmd.Flags().StringSliceVar(&to, "cc", []string{}, "Carbon copy recipients")
|
||||
rootCmd.Flags().StringSliceVar(&to, "bcc", []string{}, "BCC recipients")
|
||||
rootCmd.Flags().StringSliceVar(&to, "cc", []string{}, "CC recipients")
|
||||
rootCmd.Flags().StringSliceVarP(&attachments, "attach", "a", []string{}, "Email's attachments")
|
||||
rootCmd.Flags().StringSliceVarP(&to, "to", "t", []string{}, "Recipient emails")
|
||||
rootCmd.Flags().StringVarP(&body, "body", "b", "", "Email's body (markdown)")
|
||||
rootCmd.Flags().StringVarP(&from, "from", "f", os.Getenv(RESEND_FROM), "Email's sender ($RESEND_FROM)")
|
||||
rootCmd.Flags().StringSliceVarP(&to, "to", "t", []string{}, "Recipients")
|
||||
rootCmd.Flags().StringVarP(&body, "body", "b", "", "Email's contents")
|
||||
rootCmd.Flags().StringVarP(&from, "from", "f", os.Getenv(RESEND_FROM), "Email's sender "+commentStyle.Render("($RESEND_FROM)"))
|
||||
rootCmd.Flags().StringVarP(&subject, "subject", "s", "", "Email's subject")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue