From cb8b64e6baeb3c1d14c3a3839b8a0dc8ebfcd58e Mon Sep 17 00:00:00 2001 From: CuWilliams <142925529+CuWilliams@users.noreply.github.com> Date: Thu, 15 Jan 2026 14:48:30 -0330 Subject: [PATCH] Fix SMTP configuration: Use STARTTLS for port 587 --- .github/workflows/blog-reminder.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/blog-reminder.yml b/.github/workflows/blog-reminder.yml index 6fbdffa..d64f2fc 100644 --- a/.github/workflows/blog-reminder.yml +++ b/.github/workflows/blog-reminder.yml @@ -19,7 +19,8 @@ jobs: # SMTP server configuration (iCloud Mail) server_address: smtp.mail.me.com server_port: 587 - secure: true + # Use STARTTLS for port 587 (not immediate SSL) + starttls: true # Authentication (uses repository secrets) username: ${{ secrets.SMTP_USERNAME }}