.github/skills/send-email/SKILL.md
Send HTML email notifications via Azure Logic App. Use when (1) sending formatted emails to recipients, (2) delivering reports or summaries via email, (3) triggering email notifications from workflows. Triggers on requests like "send email", "email this", "send via email", "mail to".
npx skillsauth add microsoft/vscode-java-pack send-emailInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Send HTML email notifications to specified recipients via an Azure Logic App HTTP trigger.
This skill constructs a well-formatted HTML email from user-provided content and posts it to a configured Logic App endpoint for delivery.
The mailing URL must be set via environment variable:
MAILING_URL: The Azure Logic App HTTP trigger URL for email sendingThe user must provide:
The skill constructs and sends a JSON payload:
{
"title": "Email Subject",
"timeFrame": "January 28, 2026",
"body": "<html><body>...</body></html>",
"workflowRunUrl": "https://github.com/org/repo/actions/runs/12345",
"recipients": ["[email protected]", "[email protected]"]
}
For the full JSON schema, see references/payload-schema.json.
The skill must transform user-provided content into well-formatted HTML:
Use semantic HTML structure with inline CSS (email clients don't support external stylesheets)
Base template:
<html>
<body style="font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px;">
<div style="background: #f6f8fa; padding: 20px; border-radius: 8px; margin-bottom: 20px;">
<h1 style="color: #0366d6; margin: 0;">{{title}}</h1>
<p style="color: #586069; margin: 5px 0 0 0;">{{timeFrame}}</p>
</div>
<!-- Main content goes here - format based on user input -->
{{content}}
<hr style="border: none; border-top: 1px solid #e1e4e8; margin: 20px 0;">
<p style="color: #586069; font-size: 12px;">
Generated by <a href="{{workflowRunUrl}}" style="color: #0366d6;">GitHub Actions workflow</a>
</p>
</body>
</html>
Content formatting guidelines:
<p> tags<ul> or <ol> with appropriate styling<table> with borders and padding<a> tags with color: #0366d6<strong> or styled <span> elements<code> with monospace font and backgroundMAILING_URL environment variable is setUse curl or equivalent HTTP client to POST the JSON:
curl -X POST "$MAILING_URL" \
-H "Content-Type: application/json" \
-d '{
"title": "Email Subject",
"timeFrame": "January 28, 2026",
"body": "<html><body>...</body></html>",
"workflowRunUrl": "https://github.com/org/repo/actions/runs/12345",
"recipients": ["[email protected]"]
}'
Report the result to the user with the HTTP status code.
testing
Send workflow bot messages to Teams personal chat via Azure Logic App. Use when (1) sending personal notifications to individuals, (2) delivering triage summaries to specific recipients, (3) triggering personal workflow alerts. Triggers on requests like "send personal notification", "notify user", "send message to", "personal message".
devops
Send adaptive card notifications to Microsoft Teams via Azure Logic App. Use when (1) sending issue triage reports to Teams, (2) posting JSON payloads as Teams notifications, (3) triggering workflow result notifications. Triggers on requests like "send notification", "notify team", "post to Teams", "send report".
testing
Classify and label GitHub issues based on repository-specific labeling instructions. Use when (1) auto-labeling new issues, (2) classifying issue types (bug, feature, etc.), (3) adding priority or area labels, (4) applying consistent labeling rules. Triggers on requests like "label issue", "classify issue", "what labels should this issue have", "add labels to issue".
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.