Can I use my own email provider with SendSeven?

Yes. Connect SendGrid, Mailgun, AWS SES, Postmark, or a custom SMTP server via the dashboard. Switch providers without code changes. Per-provider deliverability tracking. Test connections before switching. Available in every plan.

Email Provider

Your provider.
Your choice.

SendGrid, Mailgun, AWS SES, or your own SMTP server. Switch email providers without code changes.

Get started instantly No credit card required 14-day free trial
supported email providers
4+
SendGrid, Mailgun, AWS SES, SMTP
code changes when switching
0
Dashboard configuration
deliverability tracking
Per provider
Separate statistics
custom server supported
SMTP
Custom configuration
01
Challenge

Provider switch, developer nightmare?

Your SaaS startup uses SendGrid. But deliverability rates are dropping, costs are rising, and support isn't responding. You want to switch to AWS SES. The problem: your entire email code is tied to SendGrid.

Vendor lock-in is one of the biggest problems in email marketing. When your code is directly coupled to a provider, every switch means: rewriting API calls, reconfiguring webhooks, migrating templates. That takes weeks and ties up developer resources.

Then there's the risk: what happens when your provider has an outage? When deliverability rates suddenly plummet? When prices increase? Without provider flexibility, you're stuck.

Many teams stay with a suboptimal provider because the switching cost is too high. In the long run, that costs more than the saved developer hours.

Weeks
typical provider switch with direct API integration
Industry experience
0 code
changes needed when switching providers via the dashboard
Abstraction layer
Zero code
Switch providers without changing a single line of code.
Dashboard configuration
1
Connect provider
Enter API key or SMTP credentials in the dashboard
2
Test the connection
Send a test email and verify deliverability
3
Activate and send
Activate the provider, campaigns run through it automatically
02
Solution

Connect, switch, done

Connect any email provider through the dashboard. Test deliverability. Switch without changing a single line of code.

Here's how it works: you configure your email provider in the dashboard with an API key or SMTP credentials. The platform abstracts the provider, so your campaigns, templates, and automations work regardless of which provider you use.

Want to switch? Configure the new provider, send a test email, activate. Your existing campaigns run on the new provider immediately. No code changes, no template migration, no downtime risk.

For maximum control: use per-provider tracking to compare deliverability rates, bounce rates, and costs across providers. Make data-driven decisions about which provider works best for your needs.

03
Result

Measurable results

Teams with provider flexibility optimize deliverability and reduce costs.

0 code
changes when switching providers
4+
Providers to choose from
SendGrid, Mailgun, AWS SES, or your own SMTP server.
Per provider
Deliverability tracking
Compare deliverability rates, bounces, and costs per provider.
SMTP
Custom server supported
Full control with your own SMTP server.

Connect providers in minutes

Configure SendGrid, Mailgun, AWS SES, or a custom SMTP server directly in the dashboard. Enter your API key, verify the sender domain, send a test email. The connection is ready in minutes.

  • SendGrid: enter API key, verify domain
  • Mailgun: configure API key and region (EU/US)
  • AWS SES: enter access key and region
  • SMTP: configure host, port, username, password

No vendor lock-in

Your campaigns, templates, and automations are provider-independent. Switch anytime: configure the new provider, send a test email, activate. Your existing campaigns run on the new provider immediately.

  • Campaigns stored independently of provider
  • No template migration needed
  • Automations continue running after the switch
  • No developer required for switching

Deliverability per provider

Compare deliverability rates, bounce rates, and costs per provider in the analytics dashboard. See which provider works best for your recipients and make data-driven switching decisions.

  • Compare deliverability rates per provider
  • Track bounce rate and spam rate
  • Evaluate cost per email sent
  • Choose the best provider based on data

Custom SMTP server

Full control: connect your own SMTP server for maximum flexibility. Configure host, port, encryption, and authentication. Ideal for companies with their own email infrastructure or specific compliance requirements.

  • Configure host, port, TLS/SSL
  • Username and password or API key
  • Ideal for own infrastructure
  • Meet compliance requirements (e.g., GDPR)

ROI in numbers

4+
supported providers
SendGrid, Mailgun, AWS SES, SMTP
0 code
changes when switching
Dashboard configuration
Per provider
deliverability tracking
Separate statistics
SMTP
custom server supported
Custom configuration

What this looks like in practice

A SaaS startup sending 5,000 transactional emails per day uses SendGrid. Deliverability drops to 92%, support isn't responding. The team configures AWS SES in the dashboard, sends test emails, compares deliverability rates. After one week of parallel operation, they switch completely to AWS SES. Deliverability: 98%. Costs: 40% less. Developer effort: zero.

Provider switch
Weeks of developer work15 minutes in the dashboard
Deliverability
92% (SendGrid)98% (AWS SES)
Email costs
€250/month€150/month (–40%)

Typical scenario based on industry data

Get started right away

Connect a provider in minutes. Switch without code.

01 · 5 min

Connect provider

Enter API key or SMTP credentials in the dashboard and verify the domain.

02 · 5 min

Test and configure

Send a test email, verify deliverability, adjust sender settings.

03 · Instant

Activate and send

Activate the provider. All campaigns run through it automatically.

For Developers & Power Users

Step-by-step guides for setup via the platform or API.

Platform Guide: Step by Step

Configure your email providers:

1

Navigate to Email Providers

Go to Reach > Email > Settings, then click "Email Providers".

2

Add Provider

Click "Add Provider". Select SendGrid or Mailgun, enter your API key and sender domains.

3

Configure Webhooks

Copy the webhook URL and configure it in your provider's dashboard for delivery tracking.

4

Test Connection

Click "Send Test Email" to verify the provider is configured correctly.

5

Set as Default

Mark one provider as default for new campaigns. You can override per campaign.

You're all set!
API Reference: Developer Access

Manage email provider configurations via API.

MethodPathDescription
POST/api/v1/email-providersAdd email provider
GET/api/v1/email-providersList configured providers
POST/api/v1/email-providers/{id}/testSend test email
Language:
Add Email Provider
const response = await fetch('https://api.sendseven.com/api/v1/email-providers', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'X-Tenant-ID': 'YOUR_TENANT_ID',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    name: 'SendGrid Production',
    provider_type: 'sendgrid',
    api_key: 'SG.xxxxxxxxxxxxxxxxxxxxx',
    sending_domain: 'mail.acme.com',
    is_default: true
  })
});

const provider = await response.json();
console.log('Provider added:', provider.id);
Test Email Provider
const response = await fetch(
  'https://api.sendseven.com/api/v1/email-providers/provider_123/test',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_API_TOKEN',
      'X-Tenant-ID': 'YOUR_TENANT_ID',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      test_email: '[email protected]'
    })
  }
);

const result = await response.json();
console.log('Test result:', result.success ? 'Passed' : 'Failed');

Frequently asked questions

Which email providers are supported?

Currently SendGrid, Mailgun, AWS SES, and custom SMTP servers are supported. Additional providers are being added continuously.

How do I switch providers?

Configure the new provider in the dashboard, send a test email, activate. Your existing campaigns and templates run on the new provider immediately. No code required.

Can I compare deliverability per provider?

Yes. The analytics dashboard shows deliverability rates, bounce rates, and costs per provider. Make data-driven decisions.

Can I use my own SMTP server?

Yes. Configure host, port, encryption, and authentication in the dashboard. Ideal for companies with their own email infrastructure or GDPR requirements.

Do I need to migrate templates when switching?

No. Templates and campaigns are stored independently of the provider. After switching, everything works immediately with the new provider.

How much does provider flexibility cost?

Email provider integration is included from Basic (plans from €49/month), with unlimited users and no per-user fees, and is also available on API Only (from €9/channel). Try free for 14 days. View pricing.

Switch email providers with confidence

SendGrid, Mailgun, AWS SES, or SMTP. Connect, test, switch. No code required.

Setup in under 5 minutes
No credit card required
100 test messages included