fix: seed attachments from command line

This commit is contained in:
Maas Lalani 2023-06-27 14:34:28 -04:00
parent bb54eb503f
commit 50e40f8cc2
No known key found for this signature in database
GPG key ID: 5A6ED5CBF1A0A000
3 changed files with 32 additions and 23 deletions

View file

@ -43,6 +43,28 @@ func sendEmail(to []string, from, subject, body string, paths []string) error {
// If the conversion fails, we'll simply send the plain-text body.
_ = goldmark.Convert([]byte(body), html)
request := &resend.SendEmailRequest{
From: from,
To: to,
Subject: subject,
Html: html.String(),
Text: body,
Attachments: makeAttachments(paths),
}
_, err := client.Emails.Send(request)
if err != nil {
return err
}
return nil
}
func makeAttachments(paths []string) []resend.Attachment {
if len(paths) == 0 {
return nil
}
attachments := make([]resend.Attachment, len(paths))
for i, a := range paths {
f, err := os.ReadFile(a)
@ -55,23 +77,5 @@ func sendEmail(to []string, from, subject, body string, paths []string) error {
}
}
if len(attachments) == 0 {
attachments = nil
}
request := &resend.SendEmailRequest{
From: from,
To: to,
Subject: subject,
Html: html.String(),
Text: body,
Attachments: attachments,
}
_, err := client.Emails.Send(request)
if err != nil {
return err
}
return nil
return attachments
}

View file

@ -54,10 +54,11 @@ var rootCmd = &cobra.Command{
}
p := tea.NewProgram(NewModel(resend.SendEmailRequest{
From: from,
To: to,
Subject: subject,
Text: body,
From: from,
To: to,
Subject: subject,
Text: body,
Attachments: makeAttachments(attachments),
}))
m, err := p.Run()
if err != nil {

View file

@ -127,6 +127,10 @@ func NewModel(defaults resend.SendEmailRequest) Model {
attachments.SetStatusBarItemName("attachment", "attachments")
attachments.SetShowPagination(false)
for _, a := range defaults.Attachments {
attachments.InsertItem(0, attachment(a.Filename))
}
picker := filepicker.New()
picker.CurrentDirectory, _ = os.UserHomeDir()