adding-azure-communication-services-email

adding-azure-communication-services-email is a skill for Claude Code from alexpizarro/azure-lean-stack-skills. It costs 113 tokens per session (1,700 once invoked), scanned A, original, MIT.

Instructions for adding transactional email to an Azure web application through Azure Communication Services Email. Transactional email means messages triggered by user or system events, such as account verification, password resets, and notifications.

In plain words
What is it for?
Use it when provisioning Azure email for verification messages, password resets, and other application notifications with Bicep, Azure’s infrastructure-configuration language.
Why use it?
It records Azure configuration details that can otherwise cause deployment failures, including the required global location value and the format used for data storage regions. It also clarifies which email use cases the service fits.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the azure-lean-stack-skills plugin — 16 skills shipped together

Good fit Use it when provisioning Azure email for verification messages, password resets, and other application notifications with Bicep, Azure’s infrastructure-configuration language.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add alexpizarro/azure-lean-stack-skills --skill adding-azure-communication-services-email
Clone the repo
git clone --depth 1 https://github.com/alexpizarro/azure-lean-stack-skills

Made for: Claude Code.

Or install azure-lean-stack-skills, the plugin that ships this one along with the rest of its 16 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for adding-azure-communication-services-email

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email/github.svg)](https://agentmods.dev/skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email)
Your own site
<a href="https://agentmods.dev/skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email"><img src="https://agentmods.dev/badge/skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for adding-azure-communication-services-email

Your own site · 80×15
<a href="https://agentmods.dev/skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email"><img src="https://agentmods.dev/badge/skills/alexpizarro/azure-lean-stack-skills/adding-azure-communication-services-email.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,700 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00113 $0.01700
Opus 5 $0.00056 $0.00850
Sonnet 5 $0.00023 $0.00340
Haiku 4.5 $0.00011 $0.00170

Measured 12d ago against content hash 90f860f9d92e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

adding-azure-communication-services-email scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/adding-azure-communication-services-email/SKILL.md · 193 lines

How it starts

The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Adding Azure Communication Services Email

Transactional email via Azure Communication Services. Free tier: 100 emails/day, then $0.00025/email. Cheaper than SendGrid for low-volume projects.

When to use ACS Email

Need Use
Account verification, password reset, transactional notifications ACS Email (this skill)
Marketing campaigns, newsletters, A/B testing A marketing-focused provider (Mailchimp, etc.) — ACS doesn't do that
High-volume bulk send (>100k/day) SendGrid Pro or Mailgun (ACS gets expensive at scale)

The three ACS quirks

1. location: 'global' (literal string, not a real Azure region)

resource emailService 'Microsoft.Communication/emailServices@2023-04-01' = {
  name: emailServiceName
  location: 'global'                  // ← NOT 'australiaeast', NOT location param
  properties: { dataLocation: 'Australia' }
}

If you pass the project's location param (australiaeast), Azure rejects the deploy.

2. dataLocation uses plain English

The values for dataLocation are not Azure region IDs. They're region groupings:

dataLocation value Where data is stored
'Australia' AU data centres
'Europe' EU
'United States' US
'Asia Pacific' APAC excluding AU
'Africa' Africa
'Brazil' Brazil
'Canada' Canada
'France' France
'Germany' Germany
'India' India
'Japan' Japan
'Korea' Korea
'Norway' Norway
'Switzerland' Switzerland
'UAE' UAE
'United Kingdom' UK

Use 'Australia' — not 'australiaeast', not 'au', not 'aus'.

3. Declare-order — no dependsOn on email service + domain

ACS resources have an awkward circular dependency: the ACS resource needs to know about the domain, but linkedDomains + dependsOn causes deployment failures.

Declare in this order, with no dependsOn:

// 1. Email service (no dependencies)
resource emailService 'Microsoft.Communication/emailServices@2023-04-01' = {
  name: emailServiceName
  location: 'global'
  properties: { dataLocation: 'Australia' }
}

// 2. Domain — child of emailService
resource emailDomain 'Microsoft.Communication/emailServices/domains@2023-04-01' = {
  parent: emailService
  name: 'AzureManagedDomain'        // or your custom domain
  location: 'global'
  properties: {
    domainManagement: 'AzureManaged'    // or 'CustomerManaged'
    userEngagementTracking: 'Disabled'
  }
}

// 3. Comms service — links to the domain via linkedDomains
resource acs 'Microsoft.Communication/communicationServices@2023-04-01' = {
  name: acsName
  location: 'global'
  properties: {
    dataLocation: 'Australia'
    linkedDomains: [ emailDomain.id ]
  }
}

Read the full file on GitHub · 193 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 193 lines · 113 tokens per session scan A 90f860f9d92e

Subscribe to this mod's changes

adding-azure-communication-services-email is a skill published in the GitHub repository alexpizarro/azure-lean-stack-skills (1 stars, last pushed 1mo ago), licensed MIT. It adds 113 tokens to every session and 1,700 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.