From 92d8eaefb6c333085c05d4293ccbfa5820ff3f28 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:18:50 +0000 Subject: [PATCH 1/4] Initial plan From e3abba457dd300cdbd5af6322e7fddc2d7ae0549 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:22:09 +0000 Subject: [PATCH 2/4] fix: switch PR notification email from Outlook to Gmail SMTP Co-authored-by: codingses <149913839+codingses@users.noreply.github.com> --- .github/workflows/pr-notification.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-notification.yml b/.github/workflows/pr-notification.yml index 2eb8468..05fe791 100644 --- a/.github/workflows/pr-notification.yml +++ b/.github/workflows/pr-notification.yml @@ -15,13 +15,13 @@ jobs: - name: Send notification email uses: dawidd6/action-send-mail@v16 with: - server_address: "smtp-mail.outlook.com" + server_address: "smtp.gmail.com" server_port: 587 - username: "epschedule@hotmail.com" - password: ${{ secrets.MAIL_PASSWORD }} + username: ${{ secrets.GMAIL_USER }} + password: ${{ secrets.GMAIL_APP_PASSWORD }} subject: "New PR: ${{ github.event.pull_request.title }}" to: ajosan@eastsideprep.org,cwest@eastsideprep.org - from: EPSchedule GitHub + from: EPSchedule GitHub <${{ secrets.GMAIL_USER }}> body: | A new pull request has been submitted to EPSchedule. From 6ad8025ae598047f7a95f7a5add06db8985ff60b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:40:40 +0000 Subject: [PATCH 3/4] =?UTF-8?q?fix:=20revert=20to=20Outlook=20SMTP=20?= =?UTF-8?q?=E2=80=94=20original=20config=20is=20correct,=20requires=20Auth?= =?UTF-8?q?enticated=20SMTP=20enabled=20in=20Outlook.com=20account=20setti?= =?UTF-8?q?ngs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: codingses <149913839+codingses@users.noreply.github.com> --- .github/workflows/pr-notification.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-notification.yml b/.github/workflows/pr-notification.yml index 05fe791..1555d11 100644 --- a/.github/workflows/pr-notification.yml +++ b/.github/workflows/pr-notification.yml @@ -15,13 +15,13 @@ jobs: - name: Send notification email uses: dawidd6/action-send-mail@v16 with: - server_address: "smtp.gmail.com" + server_address: "smtp-mail.outlook.com" server_port: 587 - username: ${{ secrets.GMAIL_USER }} - password: ${{ secrets.GMAIL_APP_PASSWORD }} + username: "epschedule@hotmail.com" + password: ${{ secrets.MAIL_PASSWORD }} subject: "New PR: ${{ github.event.pull_request.title }}" to: ajosan@eastsideprep.org,cwest@eastsideprep.org - from: EPSchedule GitHub <${{ secrets.GMAIL_USER }}> + from: 'EPSchedule GitHub ' body: | A new pull request has been submitted to EPSchedule. From 98c8f4dcf9c4162da307000e271493ace1f4a4ae Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:56:45 +0000 Subject: [PATCH 4/4] fix: switch PR notification email to Gmail SMTP (smtp.gmail.com:465) Co-authored-by: codingses <149913839+codingses@users.noreply.github.com> Agent-Logs-Url: https://github.com/EastsidePreparatorySchool/epschedule/sessions/00a6e09c-2543-44de-88d1-2dc84aa23cd2 --- .github/workflows/pr-notification.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-notification.yml b/.github/workflows/pr-notification.yml index 1555d11..ccc4da0 100644 --- a/.github/workflows/pr-notification.yml +++ b/.github/workflows/pr-notification.yml @@ -15,13 +15,14 @@ jobs: - name: Send notification email uses: dawidd6/action-send-mail@v16 with: - server_address: "smtp-mail.outlook.com" - server_port: 587 - username: "epschedule@hotmail.com" - password: ${{ secrets.MAIL_PASSWORD }} + server_address: "smtp.gmail.com" + server_port: 465 + secure: true + username: ${{ secrets.GMAIL_USER }} + password: ${{ secrets.GMAIL_APP_PASSWORD }} subject: "New PR: ${{ github.event.pull_request.title }}" to: ajosan@eastsideprep.org,cwest@eastsideprep.org - from: 'EPSchedule GitHub ' + from: 'EPSchedule GitHub <${{ secrets.GMAIL_USER }}>' body: | A new pull request has been submitted to EPSchedule.