A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

bcc always show in sent folder

sspaeti 4ec0cf08 51c27fa6

+10 -2
+10 -2
internal/ui/reader.go
··· 105 105 lines := []string{ 106 106 styleFrom.Render("From: ") + e.From, 107 107 styleDate.Render("To: ") + e.To, 108 - styleSubject.Render("Subject: ") + e.Subject, 109 - styleDate.Render("Date: ") + fmtDateFull(e.Date), 110 108 } 109 + if e.CC != "" { 110 + lines = append(lines, styleDate.Render("Cc: ")+e.CC) 111 + } 112 + if e.BCC != "" { 113 + lines = append(lines, styleDate.Render("Bcc: ")+e.BCC) 114 + } 115 + lines = append(lines, 116 + styleSubject.Render("Subject: ")+e.Subject, 117 + styleDate.Render("Date: ")+fmtDateFull(e.Date), 118 + ) 111 119 112 120 if len(attachments) > 0 { 113 121 var parts []string