aboutsummaryrefslogtreecommitdiff
path: root/commands/compose/send.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/send.go')
-rw-r--r--commands/compose/send.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/compose/send.go b/commands/compose/send.go
index 7956aee..96d24d9 100644
--- a/commands/compose/send.go
+++ b/commands/compose/send.go
@@ -9,6 +9,7 @@ import (
"strings"
"time"
+ "github.com/emersion/go-imap"
"github.com/emersion/go-sasl"
"github.com/emersion/go-smtp"
"github.com/gdamore/tcell"
@@ -180,7 +181,7 @@ func SendMessage(aerc *widgets.Aerc, args []string) error {
r, w := io.Pipe()
worker.PostAction(&types.AppendMessage{
Destination: config.CopyTo,
- Flags: []string{},
+ Flags: []string{imap.SeenFlag},
Date: time.Now(),
Reader: r,
Length: nbytes,