https://github.com/jiannan-dev/leetcode-daily-mailer
邮件自动接收leetcode的每日一题(Mail automatically receives the daily question of leetcode)
https://github.com/jiannan-dev/leetcode-daily-mailer
daily-questions email-sender-tool leetcode
Last synced: about 2 months ago
JSON representation
邮件自动接收leetcode的每日一题(Mail automatically receives the daily question of leetcode)
- Host: GitHub
- URL: https://github.com/jiannan-dev/leetcode-daily-mailer
- Owner: Jiannan-dev
- License: apache-2.0
- Created: 2023-06-10T09:12:36.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T15:18:10.000Z (almost 2 years ago)
- Last Synced: 2025-03-26T01:14:44.251Z (about 2 months ago)
- Topics: daily-questions, email-sender-tool, leetcode
- Language: TypeScript
- Homepage: https://leetcode-daily-mailer.vercel.app
- Size: 670 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
English | [简体中文](./README_ZH.md)
# leetcode-daily-mailer
A simple node program that automatically sends you the `leetcode` daily question every day, using [leetcode-daily-question](https://github.com/ruleeeer/leetcode-daily-question) to get the daily question, and [ nodemailer](https://www.npmjs.com/package/nodemailer) to send emails, the result is as follows

## Quick start
1. The current service is deployed on `vercel` (no payment required)
You can deploy your own service directly by clicking on the button [](https://vercel.com/new/clone?repository-url=https://github.com/ruleeeer/leetcode-daily-mailer&env=FROM_EMAIL&env=TO_EMAIL&env=SMTP_EMAIL_HOST&env=SMTP_PORT&env=AUTH_USER&env=AUTH_PASS&project-name=leetcode-daily-mailer&repository-name=leetcode-daily-mailer)
2. Set the required environment variables
| env_name | desc | example | require | default |
| ----------------|--------------------------|---------------------------------------|---------|---------|
| EMAIL_LANGUAGE |Language of email content(`en` or `cn`)| en | false|cn|
| FROM_EMAIL | email to send daily questions | [email protected] | true |
| TO_EMAIL | The email address to receive the daily question (multiple, separated by commas) | [email protected],[email protected] | true |
| SMTP_EMAIL_HOST| SMTP domain name of the sender's mailbox | smtp.gmail.com | true |
| SMTP_PORT| SMTP port of the sender's mailbox | 465 | false | 465 |
| AUTH_USER| The account number of the sender's mailbox | [email protected] | true |
| AUTH_PASS|Password of the sender's mailbox | password | true |
3. in the `. /vercel.json` file to set the sending time, note that `vercel` uses the UTC time zone, the following indicates that it will be sent at 1:00 a.m. every day in the UTC time zone, corresponding to 9:00 a.m. in the UTC+8 time zone
```json
{
"crons": [
{
"path": "/api/send",
"schedule": "0 1 * * *"
}
]
}
```
4. After deployment, you can directly access the `/api/send` path to test whether the send is successful
## How to debug
1. clone project
2. Set the environment variables locally, create an `.env' file in the project root directory, and set the necessary environment variables in the `.env' file
3. Install `vercel cli` tool according to https://vercel.com/docs/cli
4. Start the project with 'vercel dev
5. Visit `https://localhost:3000/api/send`