diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-13 16:04:01 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-13 16:04:01 -0400 |
commit | 17bd2dc4dbb3b43b1917c942100834c1341f2194 (patch) | |
tree | 59b3c0cc12eb387975451fc6dd5d24d60cc9154a /commands | |
parent | bda74452a81963d20c099a1252caadde7049de10 (diff) | |
download | aerc-17bd2dc4dbb3b43b1917c942100834c1341f2194.tar.gz |
Populate "From" header from config for new emails
Diffstat (limited to 'commands')
-rw-r--r-- | commands/account/compose.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go index 15fc354..c9be17a 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -17,8 +17,8 @@ func Compose(aerc *widgets.Aerc, args []string) error { if len(args) != 1 { return errors.New("Usage: compose") } - // TODO: Pass along the sender info - composer := widgets.NewComposer() + acct := aerc.SelectedAccount() + composer := widgets.NewComposer(acct.AccountConfig()) // TODO: Change tab name when message subject changes aerc.NewTab(composer, runewidth.Truncate( "New email", 32, "…")) |