🇪🇺 EU (Frankfurt) and 🇨🇦 Canada region support is coming soon — stay tuned!

    Azure Marketplace

    Azure Integration

    Subscribe to Simply Send through the Azure Marketplace, link your account, and start sending — all billed through your existing Azure subscription.

    Beta
    1

    Subscribe on Azure Marketplace

    Find the Simply Send offer in the Azure Marketplace and subscribe to the plan that fits your sending volume.

    a

    Find the offer

    Go to the Simply Send on Azure Marketplace and choose a plan.
    b

    Complete the purchase

    Click Subscribe, fill in the subscription name and resource group, then confirm your purchase. Azure will provision the SaaS resource.
    c

    Configure the SaaS account

    Once the subscription is active, click Configure SaaS Account on the resource overview page. This will redirect you to Simply Send to link or create your account.
    2

    Sign In or Create a Simply Send Account

    A Simply Send account is required to use the service. When redirected from Azure, you can sign in to an existing account or create a new one.

    →

    Existing customers

    Sign in with your existing Simply Send credentials. If you wish to move your current subscription to Azure billing, contact customer support or cancel your existing subscription and re-subscribe through Azure Marketplace.
    →

    New customers

    Create a new account. Your account will be linked to your Azure subscription automatically once sign-up is complete.
    3

    Get Your API Key & Account ID

    After account setup, retrieve your credentials from the Simply Send dashboard. Store them securely in Azure Key Vault and reference them via managed identity.

    a

    Generate an API Key

    In the dashboard, navigate to API Keys and click Generate New Key. Select the Transactional type.
    b

    Copy your Account ID

    Find your Account ID on the Account page.
    c

    Store in Azure Key Vault

    Add both values as secrets in Azure Key Vault and reference them in your App Service or Container App configuration.
    {
      "SIMPLY_SEND_API_KEY":    "@Microsoft.KeyVault(SecretUri=...)",
      "SIMPLY_SEND_ACCOUNT_ID": "@Microsoft.KeyVault(SecretUri=...)",
      "SIMPLY_SEND_API_URL":    "https://tapi.simplysend.email/send"
    }
    4

    Send Your First Email

    Use the Simply Send REST API from any Azure-hosted service — App Service, Functions, AKS, Container Apps, Logic Apps, and more.

    const response = await fetch(process.env.SIMPLY_SEND_API_URL, {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
        "X-Api-Key": process.env.SIMPLY_SEND_API_KEY,
        "X-Id":      process.env.SIMPLY_SEND_ACCOUNT_ID,
      },
      body: JSON.stringify({
        to:      "customer@yourdomain.com",
        from:    "noreply@yourverifieddomain.com",
        subject: "Welcome!",
        html:    "<h1>Hello!</h1><p>Thanks for signing up.</p>",
      }),
    });
    
    const data = await response.json();
    console.log("Sent:", data.messageId);
    5

    Billing & Subscription Management

    Choose a Monthly or Annual Paid Plan to get email credits that auto-renew each billing cycle. All charges consolidate into your Azure invoice.

    →

    Choose a plan

    Select a Paid Plan starting from $5/month (monthly) or $25/year (annual). Each plan provides a block of email credits — 3 credits per transactional email, 4 credits per marketing email.
    →

    Top up anytime

    Need more credits? Purchase one-time credit top-ups from the Pricing page in your Simply Send dashboard. Paid credits remain valid for 1 year.
    →

    View usage & analytics

    Email sending analytics are available in your Simply Send dashboard. Azure Cost Management shows your subscription charges.
    →

    Cancel plan

    Cancel your subscription directly from the Azure Portal under the SaaS resource. Credits are as long as you have an active subscription. Credits expire after 1 year.

    Simply Send subscriptions consolidate into your standard Azure invoice, supporting Enterprise Agreements, MPSA, and pay-as-you-go Azure billing. Your first 1,000 emails each month are free on all plans.