repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
eea5880
parent
fffe43e
author
Eric Bower
date
2025-07-27 09:59:28 -0400 EDT
fix(feeds): lint
1 files changed,  +3, -3
M pkg/apps/feeds/cron.go
+3, -3
 1@@ -530,9 +530,9 @@ func (f *Fetcher) SendEmail(logger *slog.Logger, username, email, subject string
 2 	fromEmail := "hello@pico.sh"
 3 	to := []string{email}
 4 	headers := map[string]string{
 5-		"From": fromEmail,
 6-		"To": email,
 7-		"Subject": subject,
 8+		"From":         fromEmail,
 9+		"To":           email,
10+		"Subject":      subject,
11 		"MIME-Version": "1.0",
12 		"Content-Type": `multipart/alternative; boundary="boundary123"`,
13 	}