File: mail-sent.go

package info (click to toggle)
aerc 0.21.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,900 kB
  • sloc: ansic: 1,181; python: 1,000; sh: 553; awk: 360; makefile: 23
file content (33 lines) | stat: -rw-r--r-- 733 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package hooks

import (
	"fmt"

	"git.sr.ht/~rjarry/aerc/config"
	"github.com/emersion/go-message/mail"
)

type MailSent struct {
	Account string
	Backend string
	Header  *mail.Header
}

func (m *MailSent) Cmd() string {
	return config.Hooks.MailSent
}

func (m *MailSent) Env() []string {
	from, _ := mail.ParseAddress(m.Header.Get("From"))
	env := []string{
		fmt.Sprintf("AERC_ACCOUNT=%s", m.Account),
		fmt.Sprintf("AERC_ACCOUNT_BACKEND=%s", m.Backend),
		fmt.Sprintf("AERC_FROM_NAME=%s", from.Name),
		fmt.Sprintf("AERC_FROM_ADDRESS=%s", from.Address),
		fmt.Sprintf("AERC_SUBJECT=%s", m.Header.Get("Subject")),
		fmt.Sprintf("AERC_TO=%s", m.Header.Get("To")),
		fmt.Sprintf("AERC_CC=%s", m.Header.Get("Cc")),
	}

	return env
}