Without a relay
Your server sends directly. Without SPF, DKIM and DMARC, receiving servers flag it as spam – or reject it entirely.
Hosted SMTP relay
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.
The basics
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.
Your server sends directly. Without SPF, DKIM and DMARC, receiving servers flag it as spam – or reject it entirely.
Your email is sent through an authenticated relay with valid DNS records. Recipients see a trusted sender and the message lands in the inbox.
Every message is logged. You can see delivery status, bounces and errors in your portal – no more guessing.
Quick setup
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:
mail.sixten.dk587STARTTLSOnyour-smtp-user@yourdomain.dkyour-smtp-passwordWorks with Konica Minolta, Ricoh, Canon, HP, Xerox, Synology, QNAP and more.
Det du får
Why not send directly?
A dedicated SMTP relay solves all of these problems. You send through a trusted, authenticated service with proper DNS records.
Use cases
Laravel, WordPress, Django, Rails – any app that sends transactional email via SMTP.
Scan-to-email from Konica Minolta, Ricoh, Canon, HP, Xerox and other MFPs.
Cron alerts, backup notifications, NAS devices, firewalls – anything that sends via SMTP.
ERP, CRM, booking systems, webshops – transactional email from your own domain.
Create a free account, add your domain and start sending authenticated email in under 2 minutes.
Kom i gang gratis