Hosted SMTP relay

Send email from your domain – without running your own mail server.

Sixten Mail gives you an authenticated SMTP relay with automatic SPF, DKIM and DMARC. Point your app, server or device at our relay and start sending in minutes.

99.8% leveringsrate
Port 587 STARTTLS
SPF + DKIM + DMARC out of the box

The basics

What is an SMTP relay?

SMTP (Simple Mail Transfer Protocol) is the standard protocol for sending email. An SMTP relay is a service that accepts email from your application or device and delivers it on your behalf – with proper authentication and DNS records so the message actually arrives in the inbox.

Without a relay

Your server sends directly. Without SPF, DKIM and DMARC, receiving servers flag it as spam – or reject it entirely.

With Sixten relay

Your email is sent through an authenticated relay with valid DNS records. Recipients see a trusted sender and the message lands in the inbox.

Full visibility

Every message is logged. You can see delivery status, bounces and errors in your portal – no more guessing.

Quick setup

Start sending in minutes

SMTP is supported by virtually every framework and device. Copy the credentials into your config and you are ready to go.

Update your .env file:

MAIL_MAILER=smtp
MAIL_HOST=mail.sixten.dk
MAIL_PORT=587
MAIL_USERNAME=your-smtp-user@yourdomain.dk
MAIL_PASSWORD=your-smtp-password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=noreply@yourdomain.dk
MAIL_FROM_NAME="${APP_NAME}"

Install a plugin like WP Mail SMTP, then use these settings:

SMTP Host:       mail.sixten.dk
SMTP Port:       587
Encryption:      TLS
Authentication:  On
Username:        your-smtp-user@yourdomain.dk
Password:        your-smtp-password

Or add to wp-config.php with a code-based plugin:

define( 'WPMS_ON', true );
define( 'WPMS_SMTP_HOST', 'mail.sixten.dk' );
define( 'WPMS_SMTP_PORT', 587 );
define( 'WPMS_SSL', 'tls' );
define( 'WPMS_SMTP_AUTH', true );
define( 'WPMS_SMTP_USER', 'your-smtp-user@yourdomain.dk' );
define( 'WPMS_SMTP_PASS', 'your-smtp-password' );

Using PHPMailer (recommended):

use PHPMailer\PHPMailer\PHPMailer;

$mail = new PHPMailer(true);
$mail->isSMTP();
$mail->Host       = 'mail.sixten.dk';
$mail->SMTPAuth   = true;
$mail->Username   = 'your-smtp-user@yourdomain.dk';
$mail->Password   = 'your-smtp-password';
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$mail->Port       = 587;

$mail->setFrom('noreply@yourdomain.dk', 'Your Name');
$mail->addAddress('recipient@example.com');
$mail->Subject = 'Test from Sixten Mail';
$mail->Body    = 'It works!';
$mail->send();

Enter these settings on your printer, scanner or NAS:

SMTP-server mail.sixten.dk
Port 587
Kryptering STARTTLS
Authentication On
Brugernavn your-smtp-user@yourdomain.dk
Adgangskode your-smtp-password

Works with Konica Minolta, Ricoh, Canon, HP, Xerox, Synology, QNAP and more.

Det du får

Everything you need for reliable email delivery

  • Authenticated SMTP relay on port 587 with STARTTLS
  • Automatic SPF, DKIM signing and DMARC alignment
  • Delivery log with bounce and error details
  • Separate SMTP logins per application or device
  • Controlled sender addresses per SMTP user
  • DNS-verifikation med tydelig grøn/rød status

Why not send directly?

Direct SMTP is unreliable

  • Many ISPs and hosts block outgoing port 25
  • Without DKIM, Gmail and M365 reject or spam-flag your mail
  • Shared hosting IPs are often blacklisted
  • No visibility into delivery failures or bounces

A dedicated SMTP relay solves all of these problems. You send through a trusted, authenticated service with proper DNS records.

Use cases

One relay for everything that sends email

Web applications

Laravel, WordPress, Django, Rails – any app that sends transactional email via SMTP.

Printers & scanners

Scan-to-email from Konica Minolta, Ricoh, Canon, HP, Xerox and other MFPs.

Servere og overvågning

Cron alerts, backup notifications, NAS devices, firewalls – anything that sends via SMTP.

Business systems

ERP, CRM, booking systems, webshops – transactional email from your own domain.

Enkel prissætning

Start free. Scale when you need to.

Den gratis plan inkluderer 1 domæne, 1 SMTP-login og 250 e-mails om dagen. Intet kreditkort påkrævet.

Opret gratis konto See all plans

Ready to send email the right way?

Create a free account, add your domain and start sending authenticated email in under 2 minutes.

Kom i gang gratis