Add event reminder workflows #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | ||
send_email: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
- name: Install dependencies | ||
run: pip install smtplib email | ||
- name: Send email | ||
run: "python - <<EOF\nimport smtplib\nfrom email.mime.multipart import MIMEMultipart\n\ | ||
from email.mime.text import MIMEText\n\nsender_email = \"[email protected]\"\ | ||
\nreceiver_email = \"[email protected]\"\ncc_email = \"[email protected],\ | ||
\ [email protected]\"\nsubject = \"Winter Holiday Party Reminder\"\ | ||
\n\nmsg = MIMEMultipart()\nmsg['From'] = sender_email\nmsg['To'] = receiver_email\n\ | ||
msg['Cc'] = cc_email\nmsg['Subject'] = subject\n\nbody = \"\"\"Hi Michelle,\n\ | ||
\nCould you please send out the announcement below to the department?\n\n\ | ||
Thanks very much!\n\nBest,\nThe PBS Social Committee\n\n===BEGIN===\nPBS Social\ | ||
\ Committee Calendar of Events\n\nWinter Holiday Party \U0001F389\u2744\uFE0F\ | ||
\u26C4\U0001F939\n\nJoin us for our Winter Holiday Party! Celebrate the season\ | ||
\ with colleagues, friends, and family.\n\n**Date:** Mid-December\n**Time:**\ | ||
\ TBD\n**Location:** TBD\n\nLet's spread some holiday cheer!\n\nBest,\nThe\ | ||
\ PBS Social Committee\n\n\n===END===\n\"\"\"\nmsg.attach(MIMEText(body, 'plain'))\n\ | ||
\nserver = smtplib.SMTP('smtp.gmail.com', 587)\nserver.starttls()\nserver.login(sender_email,\ | ||
\ \"eswl nrrh khqw aoex\")\ntext = msg.as_string()\nserver.sendmail(sender_email,\ | ||
\ receiver_email.split(\", \") + cc_email.split(\", \"), text)\nserver.quit()\n\ | ||
\nEOF" | ||
name: Reminder for Winter Holiday Party | ||
'on': | ||
schedule: | ||
- cron: '2024-12-14T14:00:00Z' |