SMTP Command Support
Try it out on Visual Studio Code!
VSCode extension support mail related commands.
Features
This extension provides the following features:
SMTP:
- Syntax highlight for SMTP commands
- Snippets for SMTP commands
POP3:
- Syntax highlight for POP3 commands
- Snippets for POP3 commands
- Tab completion for POP3 commands
Usage
Here is an example to use this extension to create automated script.
- Create a mail template.
- Create a sending script
- Run it
Then you'll send a daily greeting mail to your love automatically.
template.smtp :
MAIL FROM: alice@example.com
RCPT TO: bob@example.com
DATA
subject: Hi Bob
How's your day?
%DATE%
QUIT
greeting.sh :
#! /bin/bash
cat template.smtp | sed -e "s/%DATE%/$(date)/" | nc localhost 25
Syntax highlight
Release Notes
See CHANGELOG
| |