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.

    Coming Soon
    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:    "[email protected]",
        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

    All usage is metered and billed directly through your Azure invoice. Manage your plan from the Azure Portal.

    View usage

    Email sending analytics are available in your Simply Send account dashboard. Azure Cost Management shows line-item usage charges.

    Change or cancel plan

    Upgrade, downgrade, or cancel your subscription directly from the Azure Portal under the SaaS resource. No contact with Simply Send support required for plan changes.

    Simply Send charges are usage-based (per email sent) and consolidate into your standard Azure invoice, supporting Enterprise Agreements, MPSA, and pay-as-you-go subscriptions.