https://github.com/markruler/mdm
Send markdown to mail using Visual Studio Code Extension
https://github.com/markruler/mdm
mail markdown vscode-extension
Last synced: about 2 months ago
JSON representation
Send markdown to mail using Visual Studio Code Extension
- Host: GitHub
- URL: https://github.com/markruler/mdm
- Owner: markruler
- License: mit
- Created: 2023-02-20T12:30:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T17:22:36.000Z (over 2 years ago)
- Last Synced: 2025-03-24T11:49:33.550Z (2 months ago)
- Topics: mail, markdown, vscode-extension
- Language: TypeScript
- Homepage:
- Size: 270 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown Mail
Command `>mdm: Send markdown to mail` sends markdown file to mail.
## Front Matter
### Own mail server
This follows YAML front matter.
For example, use double quotes to force a string.```markdown
---
host: mail.example.com
port: 25
from: [email protected]
to: [email protected]
subject: "[This] is email subject"
---# Markdown Mail
```### Gmail
[Turn on "Less secure app access"](https://myaccount.google.com/lesssecureapps).
This setting is not available for accounts with 2-Step Verification enabled.> [Less secure apps & your Google Account](https://support.google.com/accounts/answer/6010255?hl=en#zippy=%2Cif-less-secure-app-access-is-on-for-your-account) - Google Account Help
```markdown
---
host: smtp.gmail.com
port: 587
from: [email protected]
to: [email protected]
subject: "[This] is email subject"
---# Markdown Mail
```## Contributing
```sh
code mdm
``````sh
rm -rf node_modules out
``````sh
npm install
``````sh
npm run pretest
```## Testing
```sh
npm test
```In VS Code, press `F5` to open a new window with your extension loaded.
## References
- [Extension API](https://code.visualstudio.com/api)
- [Your First Extention](https://code.visualstudio.com/api/get-started/your-first-extension)
- [Extension Anatomy](https://code.visualstudio.com/api/get-started/extension-anatomy)
- [Extension Guides](https://code.visualstudio.com/api/extension-guides/overview)
- [Publishing Extensions](https://code.visualstudio.com/api/working-with-extensions/publishing-extension)
- [What is the Simple Mail Transfer Protocol (SMTP)?](https://www.cloudflare.com/learning/email-security/what-is-smtp/)
- [ko-kr](https://www.cloudflare.com/ko-kr/learning/email-security/what-is-smtp/)