Platform Solutions Pricing Resources
Standard Protocols & High-Throughput Relays

Enterprise SMTP Relay for Lightning-Fast Inbox Delivery

Connect any CMS, framework, or local mail daemon directly to our high-speed Postfix clusters with automated 2048-bit DKIM, SPF alignment, and sub-100ms dispatch.

Standard SMTP Connection Settings

Use these credentials in your application, CMS plugins, or local Postfix relay config.

Cluster Status: Operational
SMTP Server Host
smtp.multicronjob.com
Global anycast relay routing
Ports & Encryption
587 / 465 / 2525
587 STARTTLS (Recommended) or 465 SSL
Authentication
PLAIN / LOGIN
Strict TLS negotiation required
SMTP Username
Generated in Dashboard
e.g. relay_usr_9f82d1c
SMTP Password / API Key
••••••••••••••••
Secure, rotated token
DKIM & SPF
2048-bit RSA
Automated DNS verification

Need production credentials? Generate dedicated SMTP users or API keys with custom send rate limits in your workspace.

Open SMTP Manager →
Plug & Play Code

Drop-in configuration for your stack

Copy and paste standard configs into your environment variables or email handlers.

MAIL_MAILER=smtp
MAIL_HOST=smtp.multicronjob.com
MAIL_PORT=587
MAIL_USERNAME=your-smtp-username
MAIL_PASSWORD=your-smtp-token
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="no-reply@yourdomain.com"
MAIL_FROM_NAME="${APP_NAME}"
<?php
use PHPMailer\PHPMailer\PHPMailer;

$mail = new PHPMailer(true);
$mail->isSMTP();
$mail->Host       = 'smtp.multicronjob.com';
$mail->SMTPAuth   = true;
$mail->Username   = 'your-smtp-username';
$mail->Password   = 'your-smtp-token';
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$mail->Port       = 587;

$mail->setFrom('orders@yourdomain.com', 'Store Orders');
$mail->addAddress('customer@example.com', 'Valued Customer');
$mail->Subject = 'Your Order Receipt #9842';
$mail->Body    = 'Thank you for your business! Your order is processing.';
$mail->send();
import nodemailer from 'nodemailer';

const transporter = nodemailer.createTransport({
  host: 'smtp.multicronjob.com',
  port: 587,
  secure: false, // true for 465, false for 587
  auth: {
    user: 'your-smtp-username',
    pass: 'your-smtp-token',
  },
});

await transporter.sendMail({
  from: '"Auth System" <security@yourdomain.com>',
  to: 'user@example.com',
  subject: 'Verify your login OTP',
  text: 'Your security code is 849201. It expires in 5 minutes.',
});
import smtplib
from email.message import EmailMessage

msg = EmailMessage()
msg.set_content("Welcome to our platform! Please verify your account.")
msg['Subject'] = "Activate Your Account"
msg['From'] = "hello@yourdomain.com"
msg['To'] = "recipient@example.com"

with smtplib.SMTP('smtp.multicronjob.com', 587) as server:
    server.starttls()
    server.login('your-smtp-username', 'your-smtp-token')
    server.send_message(msg)
    print("Email sent successfully!")
// Add to your wp-config.php or functions.php:
add_action('phpmailer_init', function($phpmailer) {
    $phpmailer->isSMTP();
    $phpmailer->Host = 'smtp.multicronjob.com';
    $phpmailer->SMTPAuth = true;
    $phpmailer->Port = 587;
    $phpmailer->Username = 'your-smtp-username';
    $phpmailer->Password = 'your-smtp-token';
    $phpmailer->SMTPSecure = 'tls';
    $phpmailer->From = 'no-reply@yourdomain.com';
    $phpmailer->FromName = get_bloginfo('name');
});
Internal Pipeline Architecture

High-Concurrency Mail Delivery Pipeline

Step 01

Application Connect

Any framework or Postfix daemon initiates STARTTLS on port 587.

Step 02

Edge Auth & Policy

Instant SASL verification, rate limit check, and quota audit in <10ms.

Step 03

DKIM 2048 Signing

Hardware-accelerated RSA crypto signs headers with verified domain keys.

Step 04

Direct MX Handshake

TLS 1.3 delivery directly to Google, Microsoft, and Yahoo destination servers.

Ready to boost your email deliverability?

Create your account today, verify your sending domain, and connect to our SMTP relay in under 5 minutes.