Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Mail Command SupportNew to Visual Studio Code? Get it now.
Mail Command Support

Mail Command Support

CornerSyrup

|
1,146 installs
| (0) | Free
Mail command snippet and syntax highlight
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

SMTP Command Support

GitHub GitHub tag (latest SemVer) Deploy extension

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.

  1. Create a mail template.
  2. Create a sending script
  3. 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

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft